Commit 93826306 authored by David S. Miller's avatar David S. Miller

Merge branch 'net-leading-spaces'

Hui Tang says:

====================
net: remove leading spaces before tabs

There are a few leading spaces before tabs and remove it by running the
following commard:

        $ find . -name '*.[ch]' | xargs sed -r -i 's/^[ ]+\t/\t/'
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents dc185ae6 9e5914cc
...@@ -609,12 +609,12 @@ static int cops_nodeid (struct net_device *dev, int nodeid) ...@@ -609,12 +609,12 @@ static int cops_nodeid (struct net_device *dev, int nodeid)
if(lp->board == DAYNA) if(lp->board == DAYNA)
{ {
/* Empty any pending adapter responses. */ /* Empty any pending adapter responses. */
while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0) while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
{ {
outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */ outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */
if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST) if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
cops_rx(dev); /* Kick any packets waiting. */ cops_rx(dev); /* Kick any packets waiting. */
schedule(); schedule();
} }
...@@ -630,13 +630,13 @@ static int cops_nodeid (struct net_device *dev, int nodeid) ...@@ -630,13 +630,13 @@ static int cops_nodeid (struct net_device *dev, int nodeid)
while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY) while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
{ {
outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */ outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */
cops_rx(dev); /* Kick out packets waiting. */ cops_rx(dev); /* Kick out packets waiting. */
schedule(); schedule();
} }
/* Not sure what Tangent does if nodeid picked is used. */ /* Not sure what Tangent does if nodeid picked is used. */
if(nodeid == 0) /* Seed. */ if(nodeid == 0) /* Seed. */
nodeid = jiffies&0xFF; /* Get a random try */ nodeid = jiffies&0xFF; /* Get a random try */
outb(2, ioaddr); /* Command length LSB */ outb(2, ioaddr); /* Command length LSB */
outb(0, ioaddr); /* Command length MSB */ outb(0, ioaddr); /* Command length MSB */
outb(LAP_INIT, ioaddr); /* Send LAP_INIT byte */ outb(LAP_INIT, ioaddr); /* Send LAP_INIT byte */
...@@ -651,13 +651,13 @@ static int cops_nodeid (struct net_device *dev, int nodeid) ...@@ -651,13 +651,13 @@ static int cops_nodeid (struct net_device *dev, int nodeid)
if(lp->board == DAYNA) if(lp->board == DAYNA)
{ {
if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST) if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */ cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
} }
if(lp->board == TANGENT) if(lp->board == TANGENT)
{ {
if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY) if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */ cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
} }
schedule(); schedule();
} }
...@@ -719,16 +719,16 @@ static irqreturn_t cops_interrupt(int irq, void *dev_id) ...@@ -719,16 +719,16 @@ static irqreturn_t cops_interrupt(int irq, void *dev_id)
{ {
do { do {
outb(0, ioaddr + COPS_CLEAR_INT); outb(0, ioaddr + COPS_CLEAR_INT);
status=inb(ioaddr+DAYNA_CARD_STATUS); status=inb(ioaddr+DAYNA_CARD_STATUS);
if((status&0x03)==DAYNA_RX_REQUEST) if((status&0x03)==DAYNA_RX_REQUEST)
cops_rx(dev); cops_rx(dev);
netif_wake_queue(dev); netif_wake_queue(dev);
} while(++boguscount < 20); } while(++boguscount < 20);
} }
else else
{ {
do { do {
status=inb(ioaddr+TANG_CARD_STATUS); status=inb(ioaddr+TANG_CARD_STATUS);
if(status & TANG_RX_READY) if(status & TANG_RX_READY)
cops_rx(dev); cops_rx(dev);
if(status & TANG_TX_READY) if(status & TANG_TX_READY)
...@@ -855,7 +855,7 @@ static void cops_timeout(struct net_device *dev, unsigned int txqueue) ...@@ -855,7 +855,7 @@ static void cops_timeout(struct net_device *dev, unsigned int txqueue)
if(lp->board==TANGENT) if(lp->board==TANGENT)
{ {
if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0) if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
printk(KERN_WARNING "%s: No TX complete interrupt.\n", dev->name); printk(KERN_WARNING "%s: No TX complete interrupt.\n", dev->name);
} }
printk(KERN_WARNING "%s: Transmit timed out.\n", dev->name); printk(KERN_WARNING "%s: Transmit timed out.\n", dev->name);
cops_jumpstart(dev); /* Restart the card. */ cops_jumpstart(dev); /* Restart the card. */
...@@ -897,7 +897,7 @@ static netdev_tx_t cops_send_packet(struct sk_buff *skb, ...@@ -897,7 +897,7 @@ static netdev_tx_t cops_send_packet(struct sk_buff *skb,
outb(LAP_WRITE, ioaddr); outb(LAP_WRITE, ioaddr);
if(lp->board == DAYNA) /* Check the transmit buffer again. */ if(lp->board == DAYNA) /* Check the transmit buffer again. */
while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0); while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
outsb(ioaddr, skb->data, skb->len); /* Send out the data. */ outsb(ioaddr, skb->data, skb->len); /* Send out the data. */
......
...@@ -935,10 +935,10 @@ static netdev_tx_t ltpc_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -935,10 +935,10 @@ static netdev_tx_t ltpc_xmit(struct sk_buff *skb, struct net_device *dev)
static int __init ltpc_probe_dma(int base, int dma) static int __init ltpc_probe_dma(int base, int dma)
{ {
int want = (dma == 3) ? 2 : (dma == 1) ? 1 : 3; int want = (dma == 3) ? 2 : (dma == 1) ? 1 : 3;
unsigned long timeout; unsigned long timeout;
unsigned long f; unsigned long f;
if (want & 1) { if (want & 1) {
if (request_dma(1,"ltpc")) { if (request_dma(1,"ltpc")) {
want &= ~1; want &= ~1;
} else { } else {
......
...@@ -379,17 +379,17 @@ static int process_bw_alloc(struct s_smc *smc, long int payload, long int overhe ...@@ -379,17 +379,17 @@ static int process_bw_alloc(struct s_smc *smc, long int payload, long int overhe
* if the payload is greater than zero. * if the payload is greater than zero.
* For the SBAPayload and the SBAOverhead we have the following * For the SBAPayload and the SBAOverhead we have the following
* unite quations * unite quations
* _ _ * _ _
* | bytes | * | bytes |
* SBAPayload = | 8000 ------ | * SBAPayload = | 8000 ------ |
* | s | * | s |
* - - * - -
* _ _ * _ _
* | bytes | * | bytes |
* SBAOverhead = | ------ | * SBAOverhead = | ------ |
* | T-NEG | * | T-NEG |
* - - * - -
* *
* T-NEG is described by the equation: * T-NEG is described by the equation:
* *
* (-) fddiMACT-NEG * (-) fddiMACT-NEG
......
...@@ -1025,7 +1025,7 @@ struct tx_queue { ...@@ -1025,7 +1025,7 @@ struct tx_queue {
#define PLC_QELM_A_BIST 0x5b6b /* BIST signature of QELM Rev. A */ #define PLC_QELM_A_BIST 0x5b6b /* BIST signature of QELM Rev. A */
/* /*
FDDI board recources FDDI board recources
*/ */
/* /*
......
...@@ -231,7 +231,7 @@ struct baycom_state { ...@@ -231,7 +231,7 @@ struct baycom_state {
#if 0 #if 0
static inline void append_crc_ccitt(unsigned char *buffer, int len) static inline void append_crc_ccitt(unsigned char *buffer, int len)
{ {
unsigned int crc = 0xffff; unsigned int crc = 0xffff;
for (;len>0;len--) for (;len>0;len--)
crc = (crc >> 8) ^ crc_ccitt_table[(crc ^ *buffer++) & 0xff]; crc = (crc >> 8) ^ crc_ccitt_table[(crc ^ *buffer++) & 0xff];
...@@ -390,7 +390,7 @@ static void encode_hdlc(struct baycom_state *bc) ...@@ -390,7 +390,7 @@ static void encode_hdlc(struct baycom_state *bc)
for (j = 0; j < 8; j++) for (j = 0; j < 8; j++)
if (unlikely(!(notbitstream & (0x1f0 << j)))) { if (unlikely(!(notbitstream & (0x1f0 << j)))) {
bitstream &= ~(0x100 << j); bitstream &= ~(0x100 << j);
bitbuf = (bitbuf & (((2 << j) << numbit) - 1)) | bitbuf = (bitbuf & (((2 << j) << numbit) - 1)) |
((bitbuf & ~(((2 << j) << numbit) - 1)) << 1); ((bitbuf & ~(((2 << j) << numbit) - 1)) << 1);
numbit++; numbit++;
notbitstream = ~bitstream; notbitstream = ~bitstream;
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
static inline void append_crc_ccitt(unsigned char *buffer, int len) static inline void append_crc_ccitt(unsigned char *buffer, int len)
{ {
unsigned int crc = crc_ccitt(0xffff, buffer, len) ^ 0xffff; unsigned int crc = crc_ccitt(0xffff, buffer, len) ^ 0xffff;
buffer += len; buffer += len;
*buffer++ = crc; *buffer++ = crc;
*buffer++ = crc >> 8; *buffer++ = crc >> 8;
......
...@@ -276,7 +276,7 @@ static void ax_bump(struct mkiss *ax) ...@@ -276,7 +276,7 @@ static void ax_bump(struct mkiss *ax)
*/ */
*ax->rbuff &= ~0x20; *ax->rbuff &= ~0x20;
} }
} }
count = ax->rcount; count = ax->rcount;
...@@ -501,7 +501,7 @@ static void ax_encaps(struct net_device *dev, unsigned char *icp, int len) ...@@ -501,7 +501,7 @@ static void ax_encaps(struct net_device *dev, unsigned char *icp, int len)
default: default:
count = kiss_esc(p, ax->xbuff, len); count = kiss_esc(p, ax->xbuff, len);
} }
} }
spin_unlock_bh(&ax->buflock); spin_unlock_bh(&ax->buflock);
set_bit(TTY_DO_WRITE_WAKEUP, &ax->tty->flags); set_bit(TTY_DO_WRITE_WAKEUP, &ax->tty->flags);
...@@ -815,7 +815,7 @@ static int mkiss_ioctl(struct tty_struct *tty, struct file *file, ...@@ -815,7 +815,7 @@ static int mkiss_ioctl(struct tty_struct *tty, struct file *file,
dev = ax->dev; dev = ax->dev;
switch (cmd) { switch (cmd) {
case SIOCGIFNAME: case SIOCGIFNAME:
err = copy_to_user((void __user *) arg, ax->dev->name, err = copy_to_user((void __user *) arg, ax->dev->name,
strlen(ax->dev->name) + 1) ? -EFAULT : 0; strlen(ax->dev->name) + 1) ? -EFAULT : 0;
break; break;
......
...@@ -1192,18 +1192,18 @@ static void t_tail(struct timer_list *t) ...@@ -1192,18 +1192,18 @@ static void t_tail(struct timer_list *t)
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&scc->lock, flags); spin_lock_irqsave(&scc->lock, flags);
del_timer(&scc->tx_wdog); del_timer(&scc->tx_wdog);
scc_key_trx(scc, TX_OFF); scc_key_trx(scc, TX_OFF);
spin_unlock_irqrestore(&scc->lock, flags); spin_unlock_irqrestore(&scc->lock, flags);
if (scc->stat.tx_state == TXS_TIMEOUT) /* we had a timeout? */ if (scc->stat.tx_state == TXS_TIMEOUT) /* we had a timeout? */
{ {
scc->stat.tx_state = TXS_WAIT; scc->stat.tx_state = TXS_WAIT;
scc_start_tx_timer(scc, t_dwait, scc->kiss.mintime*100); scc_start_tx_timer(scc, t_dwait, scc->kiss.mintime*100);
return; return;
} }
scc->stat.tx_state = TXS_IDLE; scc->stat.tx_state = TXS_IDLE;
netif_wake_queue(scc->dev); netif_wake_queue(scc->dev);
} }
...@@ -1580,7 +1580,7 @@ static int scc_net_open(struct net_device *dev) ...@@ -1580,7 +1580,7 @@ static int scc_net_open(struct net_device *dev)
{ {
struct scc_channel *scc = (struct scc_channel *) dev->ml_priv; struct scc_channel *scc = (struct scc_channel *) dev->ml_priv;
if (!scc->init) if (!scc->init)
return -EINVAL; return -EINVAL;
scc->tx_buff = NULL; scc->tx_buff = NULL;
......
...@@ -668,7 +668,7 @@ static void yam_tx_byte(struct net_device *dev, struct yam_port *yp) ...@@ -668,7 +668,7 @@ static void yam_tx_byte(struct net_device *dev, struct yam_port *yp)
} }
yp->tx_len = skb->len - 1; /* strip KISS byte */ yp->tx_len = skb->len - 1; /* strip KISS byte */
if (yp->tx_len >= YAM_MAX_FRAME || yp->tx_len < 2) { if (yp->tx_len >= YAM_MAX_FRAME || yp->tx_len < 2) {
dev_kfree_skb_any(skb); dev_kfree_skb_any(skb);
break; break;
} }
skb_copy_from_linear_data_offset(skb, 1, skb_copy_from_linear_data_offset(skb, 1,
......
...@@ -16,10 +16,10 @@ ...@@ -16,10 +16,10 @@
by Patrick McHardy and then maintained by Andre Correa. by Patrick McHardy and then maintained by Andre Correa.
You need the tc action mirror or redirect to feed this device You need the tc action mirror or redirect to feed this device
packets. packets.
Authors: Jamal Hadi Salim (2005) Authors: Jamal Hadi Salim (2005)
*/ */
......
...@@ -81,7 +81,7 @@ int mii_ethtool_gset(struct mii_if_info *mii, struct ethtool_cmd *ecmd) ...@@ -81,7 +81,7 @@ int mii_ethtool_gset(struct mii_if_info *mii, struct ethtool_cmd *ecmd)
bmcr = mii->mdio_read(dev, mii->phy_id, MII_BMCR); bmcr = mii->mdio_read(dev, mii->phy_id, MII_BMCR);
bmsr = mii->mdio_read(dev, mii->phy_id, MII_BMSR); bmsr = mii->mdio_read(dev, mii->phy_id, MII_BMSR);
if (mii->supports_gmii) { if (mii->supports_gmii) {
ctrl1000 = mii->mdio_read(dev, mii->phy_id, MII_CTRL1000); ctrl1000 = mii->mdio_read(dev, mii->phy_id, MII_CTRL1000);
stat1000 = mii->mdio_read(dev, mii->phy_id, MII_STAT1000); stat1000 = mii->mdio_read(dev, mii->phy_id, MII_STAT1000);
} }
......
...@@ -436,7 +436,7 @@ static void *bsd_alloc (unsigned char *options, int opt_len, int decomp) ...@@ -436,7 +436,7 @@ static void *bsd_alloc (unsigned char *options, int opt_len, int decomp)
* Initialize the data information for the compression code * Initialize the data information for the compression code
*/ */
db->totlen = sizeof (struct bsd_db) + db->totlen = sizeof (struct bsd_db) +
(sizeof (struct bsd_dict) * hsize); (sizeof (struct bsd_dict) * hsize);
db->hsize = hsize; db->hsize = hsize;
db->hshift = hshift; db->hshift = hshift;
......
...@@ -325,7 +325,7 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize, ...@@ -325,7 +325,7 @@ slhc_compress(struct slcompress *comp, unsigned char *icp, int isize,
* Found it -- move to the front on the connection list. * Found it -- move to the front on the connection list.
*/ */
if(lcs == ocs) { if(lcs == ocs) {
/* found at most recently used */ /* found at most recently used */
} else if (cs == ocs) { } else if (cs == ocs) {
/* found at least recently used */ /* found at least recently used */
comp->xmit_oldest = lcs->cs_this; comp->xmit_oldest = lcs->cs_this;
......
...@@ -601,7 +601,7 @@ MODULE_DEVICE_TABLE(usb, products); ...@@ -601,7 +601,7 @@ MODULE_DEVICE_TABLE(usb, products);
static int mcs7830_reset_resume (struct usb_interface *intf) static int mcs7830_reset_resume (struct usb_interface *intf)
{ {
/* YES, this function is successful enough that ethtool -d /* YES, this function is successful enough that ethtool -d
does show same output pre-/post-suspend */ does show same output pre-/post-suspend */
struct usbnet *dev = usb_get_intfdata(intf); struct usbnet *dev = usb_get_intfdata(intf);
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
*/ */
int lmc_probe(struct net_device * dev); int lmc_probe(struct net_device * dev);
unsigned lmc_mii_readreg(lmc_softc_t * const sc, unsigned unsigned lmc_mii_readreg(lmc_softc_t * const sc, unsigned
devaddr, unsigned regno); devaddr, unsigned regno);
void lmc_mii_writereg(lmc_softc_t * const sc, unsigned devaddr, void lmc_mii_writereg(lmc_softc_t * const sc, unsigned devaddr,
unsigned regno, unsigned data); unsigned regno, unsigned data);
void lmc_led_on(lmc_softc_t * const, u32); void lmc_led_on(lmc_softc_t * const, u32);
......
...@@ -639,7 +639,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev, ...@@ -639,7 +639,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev,
card->plx = ioremap(plx_phy, 0x70); card->plx = ioremap(plx_phy, 0x70);
if (!card->plx) { if (!card->plx) {
pr_err("ioremap() failed\n"); pr_err("ioremap() failed\n");
wanxl_pci_remove_one(pdev); wanxl_pci_remove_one(pdev);
return -EFAULT; return -EFAULT;
} }
...@@ -707,7 +707,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev, ...@@ -707,7 +707,7 @@ static int wanxl_pci_init_one(struct pci_dev *pdev,
mem = ioremap(mem_phy, PDM_OFFSET + sizeof(firmware)); mem = ioremap(mem_phy, PDM_OFFSET + sizeof(firmware));
if (!mem) { if (!mem) {
pr_err("ioremap() failed\n"); pr_err("ioremap() failed\n");
wanxl_pci_remove_one(pdev); wanxl_pci_remove_one(pdev);
return -EFAULT; return -EFAULT;
} }
......
...@@ -1080,7 +1080,7 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c) ...@@ -1080,7 +1080,7 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c)
z8530_rx_done(c); z8530_rx_done(c);
z8530_rx_done(c); z8530_rx_done(c);
/* /*
* Load the DMA interfaces up * Load the DMA interfaces up
*/ */
...@@ -1092,13 +1092,13 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c) ...@@ -1092,13 +1092,13 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c)
c->dma_ready=1; c->dma_ready=1;
c->dma_tx = 1; c->dma_tx = 1;
/* /*
* Enable DMA control mode * Enable DMA control mode
*/ */
/* /*
* TX DMA via DIR/REQ * TX DMA via DIR/REQ
*/ */
c->regs[R14]|= DTRREQ; c->regs[R14]|= DTRREQ;
write_zsreg(c, R14, c->regs[R14]); write_zsreg(c, R14, c->regs[R14]);
......
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