File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -380,6 +380,12 @@ struct device {
380
380
/* Get the wakeup routines, which depend on struct device */
381
381
#include <linux/pm_wakeup.h>
382
382
383
+ static inline const char * dev_name (struct device * dev )
384
+ {
385
+ /* will be changed into kobject_name(&dev->kobj) in the near future */
386
+ return dev -> bus_id ;
387
+ }
388
+
383
389
#ifdef CONFIG_NUMA
384
390
static inline int dev_to_node (struct device * dev )
385
391
{
@@ -478,7 +484,7 @@ extern void sysdev_shutdown(void);
478
484
extern const char * dev_driver_string (struct device * dev );
479
485
#define dev_printk (level , dev , format , arg ...) \
480
486
printk(level "%s %s: " format , dev_driver_string(dev) , \
481
- (dev)->bus_id , ## arg)
487
+ dev_name (dev) , ## arg)
482
488
483
489
#define dev_emerg (dev , format , arg ...) \
484
490
dev_printk(KERN_EMERG , dev , format , ## arg)
You can’t perform that action at this time.
0 commit comments