Skip to content

Commit

Permalink
Merge branch 'smc91x' into pxa-viper
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell King authored and Russell King committed Sep 7, 2008
2 parents 57a7a62 + b0dbcf5 commit a929752
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 8 additions & 1 deletion drivers/net/smc91x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,9 @@ smc_open(struct net_device *dev)
/* Setup the default Register Modes */
lp->tcr_cur_mode = TCR_DEFAULT;
lp->rcr_cur_mode = RCR_DEFAULT;
lp->rpc_cur_mode = RPC_DEFAULT;
lp->rpc_cur_mode = RPC_DEFAULT |
lp->cfg.leda << RPC_LSXA_SHFT |
lp->cfg.ledb << RPC_LSXB_SHFT;

/*
* If we are not using a MII interface, we need to
Expand Down Expand Up @@ -2157,6 +2159,11 @@ static int smc_drv_probe(struct platform_device *pdev)
lp->cfg.flags |= (nowait) ? SMC91X_NOWAIT : 0;
}

if (!lp->cfg.leda && !lp->cfg.ledb) {
lp->cfg.leda = RPC_LSA_DEFAULT;
lp->cfg.ledb = RPC_LSB_DEFAULT;
}

ndev->dma = (unsigned char)-1;

res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-regs");
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/smc91x.h
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ smc_pxa_dma_irq(int dma, void *dummy)
#define RPC_LSB_DEFAULT RPC_LED_FD
#endif

#define RPC_DEFAULT (RPC_ANEG | (RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) | RPC_SPEED | RPC_DPLX)
#define RPC_DEFAULT (RPC_ANEG | RPC_SPEED | RPC_DPLX)


/* Bank 0 0x0C is reserved */
Expand Down
2 changes: 2 additions & 0 deletions include/linux/smc91x.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

struct smc91x_platdata {
unsigned long flags;
unsigned char leda;
unsigned char ledb;
};

#endif /* __SMC91X_H__ */

0 comments on commit a929752

Please sign in to comment.