Commit 38e0cb9d authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Deepak Saxena

[PATCH] PCI Express Hotplug: mark global variables static

Don't know why, but it looks like a good idea to mark this global variables
static.
parent bd1db4f8
......@@ -43,11 +43,11 @@
#include "pciehprm.h"
/* Global variables */
int pciehp_debug;
int pciehp_poll_mode;
int pciehp_poll_time;
struct controller *pciehp_ctrl_list; /* = NULL */
struct pci_func *pciehp_slot_list[256];
static int pciehp_debug;
static int pciehp_poll_mode;
static int pciehp_poll_time;
static struct controller *pciehp_ctrl_list;
static struct pci_func *pciehp_slot_list[256];
#define DRIVER_VERSION "0.4"
#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
......
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