diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/3c527.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/3c527.c')
-rw-r--r-- | drivers/net/3c527.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/3c527.c b/drivers/net/3c527.c index 70705d1306b9..d9d056d207f3 100644 --- a/drivers/net/3c527.c +++ b/drivers/net/3c527.c | |||
@@ -51,7 +51,7 @@ DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " Richard Procter <rnp@paradise.net. | |||
51 | * circular buffer queues. | 51 | * circular buffer queues. |
52 | * | 52 | * |
53 | * The mailboxes can be used for controlling how the card traverses | 53 | * The mailboxes can be used for controlling how the card traverses |
54 | * its buffer rings, but are used only for inital setup in this | 54 | * its buffer rings, but are used only for initial setup in this |
55 | * implementation. The exec mailbox allows a variety of commands to | 55 | * implementation. The exec mailbox allows a variety of commands to |
56 | * be executed. Each command must complete before the next is | 56 | * be executed. Each command must complete before the next is |
57 | * executed. Primarily we use the exec mailbox for controlling the | 57 | * executed. Primarily we use the exec mailbox for controlling the |
@@ -317,13 +317,13 @@ static int __init mc32_probe1(struct net_device *dev, int slot) | |||
317 | u8 POS; | 317 | u8 POS; |
318 | u32 base; | 318 | u32 base; |
319 | struct mc32_local *lp = netdev_priv(dev); | 319 | struct mc32_local *lp = netdev_priv(dev); |
320 | static u16 mca_io_bases[]={ | 320 | static const u16 mca_io_bases[] = { |
321 | 0x7280,0x7290, | 321 | 0x7280,0x7290, |
322 | 0x7680,0x7690, | 322 | 0x7680,0x7690, |
323 | 0x7A80,0x7A90, | 323 | 0x7A80,0x7A90, |
324 | 0x7E80,0x7E90 | 324 | 0x7E80,0x7E90 |
325 | }; | 325 | }; |
326 | static u32 mca_mem_bases[]={ | 326 | static const u32 mca_mem_bases[] = { |
327 | 0x00C0000, | 327 | 0x00C0000, |
328 | 0x00C4000, | 328 | 0x00C4000, |
329 | 0x00C8000, | 329 | 0x00C8000, |
@@ -333,7 +333,7 @@ static int __init mc32_probe1(struct net_device *dev, int slot) | |||
333 | 0x00D8000, | 333 | 0x00D8000, |
334 | 0x00DC000 | 334 | 0x00DC000 |
335 | }; | 335 | }; |
336 | static char *failures[]={ | 336 | static const char * const failures[] = { |
337 | "Processor instruction", | 337 | "Processor instruction", |
338 | "Processor data bus", | 338 | "Processor data bus", |
339 | "Processor data bus", | 339 | "Processor data bus", |
@@ -443,7 +443,7 @@ static int __init mc32_probe1(struct net_device *dev, int slot) | |||
443 | * Grab the IRQ | 443 | * Grab the IRQ |
444 | */ | 444 | */ |
445 | 445 | ||
446 | err = request_irq(dev->irq, mc32_interrupt, IRQF_SHARED | IRQF_SAMPLE_RANDOM, DRV_NAME, dev); | 446 | err = request_irq(dev->irq, mc32_interrupt, IRQF_SHARED, DRV_NAME, dev); |
447 | if (err) { | 447 | if (err) { |
448 | release_region(dev->base_addr, MC32_IO_EXTENT); | 448 | release_region(dev->base_addr, MC32_IO_EXTENT); |
449 | pr_err("%s: unable to get IRQ %d.\n", DRV_NAME, dev->irq); | 449 | pr_err("%s: unable to get IRQ %d.\n", DRV_NAME, dev->irq); |
@@ -522,7 +522,7 @@ static int __init mc32_probe1(struct net_device *dev, int slot) | |||
522 | lp->tx_len = lp->exec_box->data[9]; /* Transmit list count */ | 522 | lp->tx_len = lp->exec_box->data[9]; /* Transmit list count */ |
523 | lp->rx_len = lp->exec_box->data[11]; /* Receive list count */ | 523 | lp->rx_len = lp->exec_box->data[11]; /* Receive list count */ |
524 | 524 | ||
525 | init_MUTEX_LOCKED(&lp->cmd_mutex); | 525 | sema_init(&lp->cmd_mutex, 0); |
526 | init_completion(&lp->execution_cmd); | 526 | init_completion(&lp->execution_cmd); |
527 | init_completion(&lp->xceiver_cmd); | 527 | init_completion(&lp->xceiver_cmd); |
528 | 528 | ||
@@ -813,7 +813,7 @@ static void mc32_flush_rx_ring(struct net_device *dev) | |||
813 | * | 813 | * |
814 | * This sets up the host transmit data-structures. | 814 | * This sets up the host transmit data-structures. |
815 | * | 815 | * |
816 | * First, we obtain from the card it's current postion in the tx | 816 | * First, we obtain from the card it's current position in the tx |
817 | * ring, so that we will know where to begin transmitting | 817 | * ring, so that we will know where to begin transmitting |
818 | * packets. | 818 | * packets. |
819 | * | 819 | * |