Skip to content

Commit

Permalink
SGI: struct device - replace bus_id with dev_name(), dev_set_name()
Browse files Browse the repository at this point in the history
CC: Jack Steiner <[email protected]>
Signed-off-by: Kay Sievers <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
kaysievers authored and gregkh committed Jan 6, 2009
1 parent 35f74fc commit bb0dc43
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion drivers/misc/sgi-gru/grumain.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static struct device_driver gru_driver = {
};

static struct device gru_device = {
.bus_id = {0},
.init_name = "",
.driver = &gru_driver,
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/sgi-xp/xp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down
8 changes: 4 additions & 4 deletions drivers/misc/sgi-xp/xpc_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down Expand Up @@ -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()) {
/*
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/sgi-xp/xpnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit bb0dc43

Please sign in to comment.