Commit 9738abed authored by Bjorn Helgaas's avatar Bjorn Helgaas

PCI: Make local functions/structs static

This fixes "no previous prototype" warnings found via "make W=1".
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 139f9251
...@@ -484,12 +484,12 @@ static struct msi_attribute mode_attribute = ...@@ -484,12 +484,12 @@ static struct msi_attribute mode_attribute =
__ATTR(mode, S_IRUGO, show_msi_mode, NULL); __ATTR(mode, S_IRUGO, show_msi_mode, NULL);
struct attribute *msi_irq_default_attrs[] = { static struct attribute *msi_irq_default_attrs[] = {
&mode_attribute.attr, &mode_attribute.attr,
NULL NULL
}; };
void msi_kobj_release(struct kobject *kobj) static void msi_kobj_release(struct kobject *kobj)
{ {
struct msi_desc *entry = to_msi_desc(kobj); struct msi_desc *entry = to_msi_desc(kobj);
......
...@@ -2619,7 +2619,7 @@ void pci_release_selected_regions(struct pci_dev *pdev, int bars) ...@@ -2619,7 +2619,7 @@ void pci_release_selected_regions(struct pci_dev *pdev, int bars)
pci_release_region(pdev, i); pci_release_region(pdev, i);
} }
int __pci_request_selected_regions(struct pci_dev *pdev, int bars, static int __pci_request_selected_regions(struct pci_dev *pdev, int bars,
const char *res_name, int excl) const char *res_name, int excl)
{ {
int i; int i;
...@@ -3699,7 +3699,7 @@ static DEFINE_SPINLOCK(resource_alignment_lock); ...@@ -3699,7 +3699,7 @@ static DEFINE_SPINLOCK(resource_alignment_lock);
* RETURNS: Resource alignment if it is specified. * RETURNS: Resource alignment if it is specified.
* Zero if it is not specified. * Zero if it is not specified.
*/ */
resource_size_t pci_specified_resource_alignment(struct pci_dev *dev) static resource_size_t pci_specified_resource_alignment(struct pci_dev *dev)
{ {
int seg, bus, slot, func, align_order, count; int seg, bus, slot, func, align_order, count;
resource_size_t align = 0; resource_size_t align = 0;
...@@ -3812,7 +3812,7 @@ void pci_reassigndev_resource_alignment(struct pci_dev *dev) ...@@ -3812,7 +3812,7 @@ void pci_reassigndev_resource_alignment(struct pci_dev *dev)
} }
} }
ssize_t pci_set_resource_alignment_param(const char *buf, size_t count) static ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
{ {
if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1) if (count > RESOURCE_ALIGNMENT_PARAM_SIZE - 1)
count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1; count = RESOURCE_ALIGNMENT_PARAM_SIZE - 1;
...@@ -3823,7 +3823,7 @@ ssize_t pci_set_resource_alignment_param(const char *buf, size_t count) ...@@ -3823,7 +3823,7 @@ ssize_t pci_set_resource_alignment_param(const char *buf, size_t count)
return count; return count;
} }
ssize_t pci_get_resource_alignment_param(char *buf, size_t size) static ssize_t pci_get_resource_alignment_param(char *buf, size_t size)
{ {
size_t count; size_t count;
spin_lock(&resource_alignment_lock); spin_lock(&resource_alignment_lock);
......
...@@ -212,8 +212,8 @@ static int pci_read_aer(struct pci_bus *bus, unsigned int devfn, int where, ...@@ -212,8 +212,8 @@ static int pci_read_aer(struct pci_bus *bus, unsigned int devfn, int where,
return ops->read(bus, devfn, where, size, val); return ops->read(bus, devfn, where, size, val);
} }
int pci_write_aer(struct pci_bus *bus, unsigned int devfn, int where, int size, static int pci_write_aer(struct pci_bus *bus, unsigned int devfn, int where,
u32 val) int size, u32 val)
{ {
u32 *sim; u32 *sim;
struct aer_error *err; struct aer_error *err;
......
...@@ -1044,7 +1044,7 @@ static void pci_bus_size_cardbus(struct pci_bus *bus, ...@@ -1044,7 +1044,7 @@ static void pci_bus_size_cardbus(struct pci_bus *bus,
; ;
} }
void __ref __pci_bus_size_bridges(struct pci_bus *bus, static void __ref __pci_bus_size_bridges(struct pci_bus *bus,
struct list_head *realloc_head) struct list_head *realloc_head)
{ {
struct pci_dev *dev; struct pci_dev *dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment