diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2016-06-09 11:42:13 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-06-10 19:20:17 -0500 |
commit | 21751a9a4ed4219c11e4073afecb9a876d1107ea (patch) | |
tree | 0e6690447a07555864ad02203770f697d29802c3 /drivers/pci/pci.c | |
parent | 92a1fe2e82d7beb2a65118833db44541663d09c7 (diff) | |
download | linux-21751a9a4ed4219c11e4073afecb9a876d1107ea.tar.bz2 |
PCI: Make bus_attr_resource_alignment static
The symbol bus_attr_resource_alignment is not exported or declared
elsewhere, so make it static to fix the following warning:
drivers/pci/pci.c:4900:1: warning: symbol 'bus_attr_resource_alignment' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index c8b4dbdd1bdd..9add28516a66 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -4897,7 +4897,7 @@ static ssize_t pci_resource_alignment_store(struct bus_type *bus, return pci_set_resource_alignment_param(buf, count); } -BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show, +static BUS_ATTR(resource_alignment, 0644, pci_resource_alignment_show, pci_resource_alignment_store); static int __init pci_resource_alignment_sysfs_init(void) |