Commit 5d9526d0 authored by Alex Chiang's avatar Alex Chiang Committed by Jesse Barnes

PCIe: fix 'symbol not declared' sparse warnings

While refreshing my physical PCI slot series against upstream, I
noticed a few simple sparse/compile warnings that were easy to
fix.

Fix the following sparse warnings in PCIe:

	drivers/pci/pcie/aer/aerdrv.c:86:6: warning: symbol 'pci_no_aer'
	was not declared. Should it be static?
	drivers/pci/pcie/portdrv_bus.c:21:17: warning: symbol
	'pcie_port_bus_type' was not declared. Should it be static?
Signed-off-by: default avatarAlex Chiang <achiang@hp.com>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent 10260d9a
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <linux/pcieport_if.h> #include <linux/pcieport_if.h>
#include "aerdrv.h" #include "aerdrv.h"
#include "../../pci.h"
/* /*
* Version Information * Version Information
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include <linux/pm.h> #include <linux/pm.h>
#include <linux/pcieport_if.h> #include <linux/pcieport_if.h>
#include "portdrv.h"
static int pcie_port_bus_match(struct device *dev, struct device_driver *drv); static int pcie_port_bus_match(struct device *dev, struct device_driver *drv);
static int pcie_port_bus_suspend(struct device *dev, pm_message_t state); static int pcie_port_bus_suspend(struct device *dev, pm_message_t state);
......
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