mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
dio: struct device - replace bus_id with dev_name(), dev_set_name()
Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
This commit is contained in:
parent
9d6b4c82bf
commit
9591463af7
@ -182,7 +182,7 @@ static int __init dio_init(void)
|
||||
|
||||
/* Initialize the DIO bus */
|
||||
INIT_LIST_HEAD(&dio_bus.devices);
|
||||
strcpy(dio_bus.dev.bus_id, "dio");
|
||||
dev_set_name(&dio_bus.dev, "dio");
|
||||
error = device_register(&dio_bus.dev);
|
||||
if (error) {
|
||||
pr_err("DIO: Error registering dio_bus\n");
|
||||
@ -237,7 +237,7 @@ static int __init dio_init(void)
|
||||
dev->scode = scode;
|
||||
dev->resource.start = pa;
|
||||
dev->resource.end = pa + DIO_SIZE(scode, va);
|
||||
sprintf(dev->dev.bus_id,"%02x", scode);
|
||||
dev_set_name(&dev->dev, "%02x", scode);
|
||||
|
||||
/* read the ID byte(s) and encode if necessary. */
|
||||
prid = DIO_ID(va);
|
||||
|
Loading…
Reference in New Issue
Block a user