diff options
author | Dennis Stosberg <dennis@stosberg.net> | 2006-11-13 03:15:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-11-16 17:30:26 -0500 |
commit | d355c3c23ce56ab83e41f2bfb30d02fb90618530 (patch) | |
tree | a586bf95cb53525761139b10864014953cf36e80 /drivers/block/aoe/aoeblk.c | |
parent | 7bb0386f102ece8819182ccf7fffe8bbebc32b19 (diff) |
aoe: Add forgotten NULL at end of attribute list in aoeblk.c
This caused the system to stall when the aoe module was loaded. The
error was introduced in commit 4ca5224f3ea4779054d96e885ca9b3980801ce13
Signed-off-by: Dennis Stosberg <dennis@stosberg.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/block/aoe/aoeblk.c')
-rw-r--r-- | drivers/block/aoe/aoeblk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoeblk.c b/drivers/block/aoe/aoeblk.c index d433f27e0ce2..aa25f8b09fe3 100644 --- a/drivers/block/aoe/aoeblk.c +++ b/drivers/block/aoe/aoeblk.c | |||
@@ -68,6 +68,7 @@ static struct attribute *aoe_attrs[] = { | |||
68 | &disk_attr_mac.attr, | 68 | &disk_attr_mac.attr, |
69 | &disk_attr_netif.attr, | 69 | &disk_attr_netif.attr, |
70 | &disk_attr_fwver.attr, | 70 | &disk_attr_fwver.attr, |
71 | NULL | ||
71 | }; | 72 | }; |
72 | 73 | ||
73 | static const struct attribute_group attr_group = { | 74 | static const struct attribute_group attr_group = { |