Commit 2e713165 authored by David Sterba's avatar David Sterba Committed by Linus Torvalds

ipwireless: Remove unused defines

ipwireless: Remove unused defines

Remove unused defines, defines hiding variables, defines hiding 0.
Signed-off-by: default avatarDavid Sterba <dsterba@suse.cz>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d4c0deb7
...@@ -227,15 +227,12 @@ struct MEMINFREG { ...@@ -227,15 +227,12 @@ struct MEMINFREG {
unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */ unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */
}; };
#define IODMADPR 0x00 /* DMA Data Port Register (R/W) */
#define CARD_PRESENT_VALUE (0xBEEFCAFEUL) #define CARD_PRESENT_VALUE (0xBEEFCAFEUL)
#define MEMTX_TX 0x0001 #define MEMTX_TX 0x0001
#define MEMRX_RX 0x0001 #define MEMRX_RX 0x0001
#define MEMRX_RX_DONE 0x0001 #define MEMRX_RX_DONE 0x0001
#define MEMRX_PCINTACKK 0x0001 #define MEMRX_PCINTACKK 0x0001
#define MEMRX_MEMSPURIOUSINT 0x0001
#define NL_NUM_OF_PRIORITIES 3 #define NL_NUM_OF_PRIORITIES 3
#define NL_NUM_OF_PROTOCOLS 3 #define NL_NUM_OF_PROTOCOLS 3
...@@ -422,7 +419,7 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data, ...@@ -422,7 +419,7 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data,
outw(DCR_TXDONE, hw->base_port + IODCR); outw(DCR_TXDONE, hw->base_port + IODCR);
} else if (hw->hw_version == HW_VERSION_2) { } else if (hw->hw_version == HW_VERSION_2) {
outw((unsigned short) length, hw->base_port + IODMADPR); outw((unsigned short) length, hw->base_port);
for (i = 0; i < length; i += 2) { for (i = 0; i < length; i += 2) {
unsigned short d = data[i]; unsigned short d = data[i];
...@@ -431,10 +428,10 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data, ...@@ -431,10 +428,10 @@ static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data,
if (i + 1 < length) if (i + 1 < length)
d |= data[i + 1] << 8; d |= data[i + 1] << 8;
raw_data = cpu_to_le16(d); raw_data = cpu_to_le16(d);
outw(raw_data, hw->base_port + IODMADPR); outw(raw_data, hw->base_port);
} }
while ((i & 3) != 2) { while ((i & 3) != 2) {
outw((unsigned short) 0xDEAD, hw->base_port + IODMADPR); outw((unsigned short) 0xDEAD, hw->base_port);
i += 2; i += 2;
} }
writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx); writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx);
...@@ -863,7 +860,7 @@ static void do_receive_packet(struct ipw_hardware *hw) ...@@ -863,7 +860,7 @@ static void do_receive_packet(struct ipw_hardware *hw)
pkt[i + 1] = (unsigned char) (data >> 8); pkt[i + 1] = (unsigned char) (data >> 8);
} }
} else { } else {
len = inw(hw->base_port + IODMADPR); len = inw(hw->base_port);
if (len > hw->ll_mtu) { if (len > hw->ll_mtu) {
printk(KERN_INFO IPWIRELESS_PCCARD_NAME printk(KERN_INFO IPWIRELESS_PCCARD_NAME
": received a packet of %u bytes - " ": received a packet of %u bytes - "
...@@ -874,7 +871,7 @@ static void do_receive_packet(struct ipw_hardware *hw) ...@@ -874,7 +871,7 @@ static void do_receive_packet(struct ipw_hardware *hw)
} }
for (i = 0; i < len; i += 2) { for (i = 0; i < len; i += 2) {
__le16 raw_data = inw(hw->base_port + IODMADPR); __le16 raw_data = inw(hw->base_port);
unsigned short data = le16_to_cpu(raw_data); unsigned short data = le16_to_cpu(raw_data);
pkt[i] = (unsigned char) data; pkt[i] = (unsigned char) data;
...@@ -882,7 +879,7 @@ static void do_receive_packet(struct ipw_hardware *hw) ...@@ -882,7 +879,7 @@ static void do_receive_packet(struct ipw_hardware *hw)
} }
while ((i & 3) != 2) { while ((i & 3) != 2) {
inw(hw->base_port + IODMADPR); inw(hw->base_port);
i += 2; i += 2;
} }
} }
......
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
#include "main.h" #include "main.h"
#include "tty.h" #include "tty.h"
#define MAX_OUTGOING_PACKETS_QUEUED ipwireless_out_queue
#define MAX_ASSOCIATED_TTYS 2 #define MAX_ASSOCIATED_TTYS 2
#define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP) #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP)
...@@ -94,7 +93,7 @@ static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel, ...@@ -94,7 +93,7 @@ static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel,
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&network->spinlock, flags); spin_lock_irqsave(&network->spinlock, flags);
if (network->outgoing_packets_queued < MAX_OUTGOING_PACKETS_QUEUED) { if (network->outgoing_packets_queued < ipwireless_out_queue) {
unsigned char *buf; unsigned char *buf;
static unsigned char header[] = { static unsigned char header[] = {
PPP_ALLSTATIONS, /* 0xff */ PPP_ALLSTATIONS, /* 0xff */
......
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