From: Kay Sievers Date: Tue, 6 Jan 2009 18:44:42 +0000 (-0800) Subject: chris: struct device - replace bus_id with dev_name(), dev_set_name() X-Git-Tag: v2.6.29-rc1~229^2~9 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=4383fc3d9a98759a1ec3c57a30781e95a4cfcfa9;p=linux-2.6-omap-h63xx.git chris: struct device - replace bus_id with dev_name(), dev_set_name() Cc: Jesper Nilsson Signed-off-by: Kay Sievers Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/cris/arch-v32/drivers/iop_fw_load.c b/arch/cris/arch-v32/drivers/iop_fw_load.c index 3b3857ec1f1..2f8ea0f7a63 100644 --- a/arch/cris/arch-v32/drivers/iop_fw_load.c +++ b/arch/cris/arch-v32/drivers/iop_fw_load.c @@ -24,12 +24,12 @@ #error "Please contact 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)