Skip to content

Commit

Permalink
chris: struct device - replace bus_id with dev_name(), dev_set_name()
Browse files Browse the repository at this point in the history
Cc: Jesper Nilsson <[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 6ff4dd3 commit 4383fc3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/cris/arch-v32/drivers/iop_fw_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
#error "Please contact <[email protected]> for details on how to fix it properly."

static struct device iop_spu_device[2] = {
{ .bus_id = "iop-spu0", },
{ .bus_id = "iop-spu1", },
{ .init_name = "iop-spu0", },
{ .init_name = "iop-spu1", },
};

static struct device iop_mpu_device = {
.bus_id = "iop-mpu",
.init_name = "iop-mpu",
};

static int wait_mpu_idle(void)
Expand Down

0 comments on commit 4383fc3

Please sign in to comment.