diff options
| -rw-r--r-- | arch/parisc/include/asm/parisc-device.h | 4 | ||||
| -rw-r--r-- | arch/parisc/kernel/drivers.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/arch/parisc/include/asm/parisc-device.h b/arch/parisc/include/asm/parisc-device.h index 7aa13f2add7a..9afdad6c2ffb 100644 --- a/arch/parisc/include/asm/parisc-device.h +++ b/arch/parisc/include/asm/parisc-device.h | |||
| @@ -42,9 +42,9 @@ struct parisc_driver { | |||
| 42 | #define to_parisc_driver(d) container_of(d, struct parisc_driver, drv) | 42 | #define to_parisc_driver(d) container_of(d, struct parisc_driver, drv) |
| 43 | #define parisc_parent(d) to_parisc_device(d->dev.parent) | 43 | #define parisc_parent(d) to_parisc_device(d->dev.parent) |
| 44 | 44 | ||
| 45 | static inline char *parisc_pathname(struct parisc_device *d) | 45 | static inline const char *parisc_pathname(struct parisc_device *d) |
| 46 | { | 46 | { |
| 47 | return d->dev.bus_id; | 47 | return dev_name(&d->dev); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | static inline void | 50 | static inline void |
diff --git a/arch/parisc/kernel/drivers.c b/arch/parisc/kernel/drivers.c index 2ca654bd6322..884b7ce16a3b 100644 --- a/arch/parisc/kernel/drivers.c +++ b/arch/parisc/kernel/drivers.c | |||
| @@ -43,7 +43,7 @@ struct hppa_dma_ops *hppa_dma_ops __read_mostly; | |||
| 43 | EXPORT_SYMBOL(hppa_dma_ops); | 43 | EXPORT_SYMBOL(hppa_dma_ops); |
| 44 | 44 | ||
| 45 | static struct device root = { | 45 | static struct device root = { |
| 46 | .bus_id = "parisc", | 46 | .init_name = "parisc", |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | static inline int check_dev(struct device *dev) | 49 | static inline int check_dev(struct device *dev) |
| @@ -393,7 +393,8 @@ EXPORT_SYMBOL(print_pci_hwpath); | |||
| 393 | static void setup_bus_id(struct parisc_device *padev) | 393 | static void setup_bus_id(struct parisc_device *padev) |
| 394 | { | 394 | { |
| 395 | struct hardware_path path; | 395 | struct hardware_path path; |
| 396 | char *output = padev->dev.bus_id; | 396 | char name[20]; |
| 397 | char *output = name; | ||
| 397 | int i; | 398 | int i; |
| 398 | 399 | ||
| 399 | get_node_path(padev->dev.parent, &path); | 400 | get_node_path(padev->dev.parent, &path); |
| @@ -404,6 +405,7 @@ static void setup_bus_id(struct parisc_device *padev) | |||
| 404 | output += sprintf(output, "%u:", (unsigned char) path.bc[i]); | 405 | output += sprintf(output, "%u:", (unsigned char) path.bc[i]); |
| 405 | } | 406 | } |
| 406 | sprintf(output, "%u", (unsigned char) padev->hw_path); | 407 | sprintf(output, "%u", (unsigned char) padev->hw_path); |
| 408 | dev_set_name(&padev->dev, name); | ||
| 407 | } | 409 | } |
| 408 | 410 | ||
| 409 | struct parisc_device * create_tree_node(char id, struct device *parent) | 411 | struct parisc_device * create_tree_node(char id, struct device *parent) |
