]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
SGI: struct device - replace bus_id with dev_name(), dev_set_name()
authorKay Sievers <kay.sievers@vrfy.org>
Tue, 6 Jan 2009 18:44:37 +0000 (10:44 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 6 Jan 2009 18:44:37 +0000 (10:44 -0800)
CC: Jack Steiner <steiner@sgi.com>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/misc/sgi-gru/grumain.c
drivers/misc/sgi-xp/xp_main.c
drivers/misc/sgi-xp/xpc_main.c
drivers/misc/sgi-xp/xpnet.c

index e11e1ac509002c862553744d606e4582b2bf3238..3d2fc216bae5b561dea357cd86d1661803a0377d 100644 (file)
@@ -29,7 +29,7 @@ static struct device_driver gru_driver = {
 };
 
 static struct device gru_device = {
-       .bus_id = {0},
+       .init_name = "",
        .driver = &gru_driver,
 };
 
index 9a2e77172d942f548402e9ce8ccce25d9e3bf935..16f8dcab2da4ba9c63342ed7766a6c741da2b020 100644 (file)
@@ -25,7 +25,7 @@ struct device_driver xp_dbg_name = {
 };
 
 struct device xp_dbg_subname = {
-       .bus_id = {0},          /* set to "" */
+       .init_name = "",                /* set to "" */
        .driver = &xp_dbg_name
 };
 
index e8d5cfbd32c21946238c92b0517f8c2aca6827b7..89218f7cfaa72e272aba75ebb99ab43c87359e71 100644 (file)
@@ -59,12 +59,12 @@ struct device_driver xpc_dbg_name = {
 };
 
 struct device xpc_part_dbg_subname = {
-       .bus_id = {0},          /* set to "part" at xpc_init() time */
+       .init_name = "",        /* set to "part" at xpc_init() time */
        .driver = &xpc_dbg_name
 };
 
 struct device xpc_chan_dbg_subname = {
-       .bus_id = {0},          /* set to "chan" at xpc_init() time */
+       .init_name = "",        /* set to "chan" at xpc_init() time */
        .driver = &xpc_dbg_name
 };
 
@@ -1258,8 +1258,8 @@ xpc_init(void)
        int ret;
        struct task_struct *kthread;
 
-       snprintf(xpc_part->bus_id, BUS_ID_SIZE, "part");
-       snprintf(xpc_chan->bus_id, BUS_ID_SIZE, "chan");
+       dev_set_name(xpc_part, "part");
+       dev_set_name(xpc_chan, "chan");
 
        if (is_shub()) {
                /*
index 8e6aa9508f4603dd2f4fa3f986e2612693da78f7..81152b3e360c759fa354caee56e00f09c0b3d2be 100644 (file)
@@ -138,7 +138,7 @@ struct device_driver xpnet_dbg_name = {
 };
 
 struct device xpnet_dbg_subname = {
-       .bus_id = {0},          /* set to "" */
+       .init_name = "",        /* set to "" */
        .driver = &xpnet_dbg_name
 };