diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 19:15:02 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 19:15:02 -0400 |
commit | 1296fc02c22cb8bc0cde34fbd1336d1a8d76f1e1 (patch) | |
tree | 1f01d508fcf452af31235827a0a1e89e708fb61c | |
parent | 19b6e6a4f5c25192d366861e68da5f836a518f1b (diff) |
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 <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/scsi/fcoe/fcoe_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe_sysfs.c b/drivers/scsi/fcoe/fcoe_sysfs.c index 8189b96eac7e..1f4f22fe8281 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); | |||
558 | 558 | ||
559 | static struct attribute *fcoe_bus_attrs[] = { | 559 | static struct attribute *fcoe_bus_attrs[] = { |
560 | &bus_attr_ctlr_create.attr, | 560 | &bus_attr_ctlr_create.attr, |
561 | &bus_attr_ctrl_destroy.attr, | 561 | &bus_attr_ctlr_destroy.attr, |
562 | NULL, | 562 | NULL, |
563 | }; | 563 | }; |
564 | ATTRIBUTE_GROUPS(fcoe_bus); | 564 | ATTRIBUTE_GROUPS(fcoe_bus); |