From: Greg Kroah-Hartman Date: Thu, 26 Sep 2013 23:15:02 +0000 (-0700) Subject: scsi: fcoe: fix build error X-Git-Tag: v3.13-rc1~172^2~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1296fc02c22cb8bc0cde34fbd1336d1a8d76f1e1;p=platform%2Fkernel%2Flinux-stable.git scsi: fcoe: fix build error I had a typo in a variable name for the previous patch (SCSI: fcoe: convert bus code to use bus_group) that broke the build, this fixes that. Reported-by: kbuild test robot Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/scsi/fcoe/fcoe_sysfs.c b/drivers/scsi/fcoe/fcoe_sysfs.c index 8189b96..1f4f22f 100644 --- a/drivers/scsi/fcoe/fcoe_sysfs.c +++ b/drivers/scsi/fcoe/fcoe_sysfs.c @@ -558,7 +558,7 @@ static BUS_ATTR(ctlr_destroy, S_IWUSR, NULL, fcoe_ctlr_destroy_store); static struct attribute *fcoe_bus_attrs[] = { &bus_attr_ctlr_create.attr, - &bus_attr_ctrl_destroy.attr, + &bus_attr_ctlr_destroy.attr, NULL, }; ATTRIBUTE_GROUPS(fcoe_bus);