ps3: some minor cleanups
- Removed the embarrassing definition which was used in only one place. - Fixed wrong initialization of dmac_cmd_status. Signed-off-by: Masakazu Mokuno <mokuno@sm.sony.co.jp> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
committed by
Jeff Garzik
parent
9f6c9a8c50
commit
ea6992aa1f
@@ -290,7 +290,8 @@ static void gelic_net_release_rx_chain(struct gelic_net_card *card)
|
|||||||
descr->buf_addr = 0;
|
descr->buf_addr = 0;
|
||||||
dev_kfree_skb_any(descr->skb);
|
dev_kfree_skb_any(descr->skb);
|
||||||
descr->skb = NULL;
|
descr->skb = NULL;
|
||||||
descr->dmac_cmd_status = GELIC_NET_DESCR_NOT_IN_USE;
|
gelic_net_set_descr_status(descr,
|
||||||
|
GELIC_NET_DESCR_NOT_IN_USE);
|
||||||
}
|
}
|
||||||
descr = descr->next;
|
descr = descr->next;
|
||||||
} while (descr != card->rx_chain.head);
|
} while (descr != card->rx_chain.head);
|
||||||
@@ -374,7 +375,7 @@ static void gelic_net_release_tx_descr(struct gelic_net_card *card,
|
|||||||
descr->skb = NULL;
|
descr->skb = NULL;
|
||||||
|
|
||||||
/* set descr status */
|
/* set descr status */
|
||||||
descr->dmac_cmd_status = GELIC_NET_DMAC_CMDSTAT_NOT_IN_USE;
|
gelic_net_set_descr_status(descr, GELIC_NET_DESCR_NOT_IN_USE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -133,7 +133,6 @@ enum gelic_net_int1_status {
|
|||||||
* interrupt status */
|
* interrupt status */
|
||||||
|
|
||||||
#define GELIC_NET_DMAC_CMDSTAT_CHAIN_END 0x00000002 /* RXDCEIS:DMA stopped */
|
#define GELIC_NET_DMAC_CMDSTAT_CHAIN_END 0x00000002 /* RXDCEIS:DMA stopped */
|
||||||
#define GELIC_NET_DMAC_CMDSTAT_NOT_IN_USE 0xb0000000
|
|
||||||
#define GELIC_NET_DESCR_IND_PROC_SHIFT 28
|
#define GELIC_NET_DESCR_IND_PROC_SHIFT 28
|
||||||
#define GELIC_NET_DESCR_IND_PROC_MASKO 0x0fffffff
|
#define GELIC_NET_DESCR_IND_PROC_MASKO 0x0fffffff
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user