diff options
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/wireless.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/wireless.h b/include/net/wireless.h index 17d4b582cf34..412351560b76 100644 --- a/include/net/wireless.h +++ b/include/net/wireless.h | |||
@@ -263,9 +263,9 @@ static inline struct device *wiphy_dev(struct wiphy *wiphy) | |||
263 | /** | 263 | /** |
264 | * wiphy_name - get wiphy name | 264 | * wiphy_name - get wiphy name |
265 | */ | 265 | */ |
266 | static inline char *wiphy_name(struct wiphy *wiphy) | 266 | static inline const char *wiphy_name(struct wiphy *wiphy) |
267 | { | 267 | { |
268 | return wiphy->dev.bus_id; | 268 | return dev_name(&wiphy->dev); |
269 | } | 269 | } |
270 | 270 | ||
271 | /** | 271 | /** |