Commit 42d4eff7 authored by Martyn Welch's avatar Martyn Welch Committed by Greg Kroah-Hartman

Staging: vme: Allow drivers to co-exist

Unable to build both drivers at the same time due to classing variables that should be declared static but aren't.
Signed-off-by: default avatarMartyn Welch <martyn.welch@gefanuc.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3cb1b8a7
...@@ -41,21 +41,23 @@ static void __exit ca91cx42_exit(void); ...@@ -41,21 +41,23 @@ static void __exit ca91cx42_exit(void);
/* Module parameters */ /* Module parameters */
static int geoid; static int geoid;
struct vme_bridge *ca91cx42_bridge; static struct vme_bridge *ca91cx42_bridge;
wait_queue_head_t dma_queue; static wait_queue_head_t dma_queue;
wait_queue_head_t iack_queue; static wait_queue_head_t iack_queue;
wait_queue_head_t lm_queue; #if 0
wait_queue_head_t mbox_queue; static wait_queue_head_t lm_queue;
#endif
void (*lm_callback[4])(int); /* Called in interrupt handler, be careful! */ static wait_queue_head_t mbox_queue;
void *crcsr_kernel;
dma_addr_t crcsr_bus; static void (*lm_callback[4])(int); /* Called in interrupt handler */
static void *crcsr_kernel;
struct mutex vme_rmw; /* Only one RMW cycle at a time */ static dma_addr_t crcsr_bus;
struct mutex vme_int; /*
* Only one VME interrupt can be static struct mutex vme_rmw; /* Only one RMW cycle at a time */
* generated at a time, provide locking static struct mutex vme_int; /*
*/ * Only one VME interrupt can be
* generated at a time, provide locking
*/
static char driver_name[] = "vme_ca91cx42"; static char driver_name[] = "vme_ca91cx42";
......
...@@ -62,19 +62,19 @@ int tsi148_generate_irq(int, int); ...@@ -62,19 +62,19 @@ int tsi148_generate_irq(int, int);
int tsi148_slot_get(void); int tsi148_slot_get(void);
/* Modue parameter */ /* Modue parameter */
int err_chk = 0; static int err_chk;
static int geoid; static int geoid;
/* XXX These should all be in a per device structure */ /* XXX These should all be in a per device structure */
struct vme_bridge *tsi148_bridge; static struct vme_bridge *tsi148_bridge;
wait_queue_head_t dma_queue[2]; static wait_queue_head_t dma_queue[2];
wait_queue_head_t iack_queue; static wait_queue_head_t iack_queue;
void (*lm_callback[4])(int); /* Called in interrupt handler, be careful! */ static void (*lm_callback[4])(int); /* Called in interrupt handler */
void *crcsr_kernel; static void *crcsr_kernel;
dma_addr_t crcsr_bus; static dma_addr_t crcsr_bus;
struct vme_master_resource *flush_image; static struct vme_master_resource *flush_image;
struct mutex vme_rmw; /* Only one RMW cycle at a time */ static struct mutex vme_rmw; /* Only one RMW cycle at a time */
struct mutex vme_int; /* static struct mutex vme_int; /*
* Only one VME interrupt can be * Only one VME interrupt can be
* generated at a time, provide locking * generated at a time, provide locking
*/ */
......
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