diff options
-rw-r--r-- | drivers/pci/pci-label.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci-label.c b/drivers/pci/pci-label.c index 111500e86f94..90c0a729cd3a 100644 --- a/drivers/pci/pci-label.c +++ b/drivers/pci/pci-label.c | |||
@@ -97,12 +97,12 @@ smbiosinstance_show(struct device *dev, | |||
97 | } | 97 | } |
98 | 98 | ||
99 | static struct device_attribute smbios_attr_label = { | 99 | static struct device_attribute smbios_attr_label = { |
100 | .attr = {.name = "label", .mode = 0444, .owner = THIS_MODULE}, | 100 | .attr = {.name = "label", .mode = 0444}, |
101 | .show = smbioslabel_show, | 101 | .show = smbioslabel_show, |
102 | }; | 102 | }; |
103 | 103 | ||
104 | static struct device_attribute smbios_attr_instance = { | 104 | static struct device_attribute smbios_attr_instance = { |
105 | .attr = {.name = "index", .mode = 0444, .owner = THIS_MODULE}, | 105 | .attr = {.name = "index", .mode = 0444}, |
106 | .show = smbiosinstance_show, | 106 | .show = smbiosinstance_show, |
107 | }; | 107 | }; |
108 | 108 | ||