net: pcnet: Drop typedef struct pcnet_priv_t
Use struct pcnet_priv all over the place instead. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
0b7d95531c
commit
b9c52c5090
@ -76,15 +76,15 @@ struct pcnet_uncached_priv {
|
|||||||
struct pcnet_init_block init_block;
|
struct pcnet_init_block init_block;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct pcnet_priv {
|
struct pcnet_priv {
|
||||||
struct pcnet_uncached_priv *uc;
|
struct pcnet_uncached_priv *uc;
|
||||||
/* Receive Buffer space */
|
/* Receive Buffer space */
|
||||||
unsigned char (*rx_buf)[RX_RING_SIZE][PKT_BUF_SZ + 4];
|
unsigned char (*rx_buf)[RX_RING_SIZE][PKT_BUF_SZ + 4];
|
||||||
int cur_rx;
|
int cur_rx;
|
||||||
int cur_tx;
|
int cur_tx;
|
||||||
} pcnet_priv_t;
|
};
|
||||||
|
|
||||||
static pcnet_priv_t *lp;
|
static struct pcnet_priv *lp;
|
||||||
|
|
||||||
/* Offsets from base I/O address for WIO mode */
|
/* Offsets from base I/O address for WIO mode */
|
||||||
#define PCNET_RDP 0x10
|
#define PCNET_RDP 0x10
|
||||||
@ -340,9 +340,9 @@ static int pcnet_init(struct eth_device *dev, bd_t *bis)
|
|||||||
* must be aligned on 16-byte boundaries.
|
* must be aligned on 16-byte boundaries.
|
||||||
*/
|
*/
|
||||||
if (lp == NULL) {
|
if (lp == NULL) {
|
||||||
addr = (unsigned long)malloc(sizeof(pcnet_priv_t) + 0x10);
|
addr = (unsigned long)malloc(sizeof(*lp) + 0x10);
|
||||||
addr = (addr + 0xf) & ~0xf;
|
addr = (addr + 0xf) & ~0xf;
|
||||||
lp = (pcnet_priv_t *)addr;
|
lp = (struct pcnet_priv *)addr;
|
||||||
|
|
||||||
addr = (unsigned long)memalign(ARCH_DMA_MINALIGN,
|
addr = (unsigned long)memalign(ARCH_DMA_MINALIGN,
|
||||||
sizeof(*lp->uc));
|
sizeof(*lp->uc));
|
||||||
|
Loading…
Reference in New Issue
Block a user