aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2007-10-20 14:10:03 -0500
committerJeff Garzik <jeff@garzik.org>2007-10-23 20:18:13 -0400
commitde0523863e167ec29cbd247bd004cdcb607e330e (patch)
tree81c1fb87aabf969da29b52b5f96718f50d505889 /drivers/net
parentdefxx.c: dfx_bus_init() is __devexit not __devinit (diff)
downloadlinux-dev-de0523863e167ec29cbd247bd004cdcb607e330e.tar.xz
linux-dev-de0523863e167ec29cbd247bd004cdcb607e330e.zip
pasemi_mac: fix typo
Add missing &: drivers/net/pasemi_mac.c: In function 'pasemi_mac_clean_rx': drivers/net/pasemi_mac.c:553: warning: passing argument 1 of 'prefetch' makes pointer from integer without a cast Signed-off-by: Olof Johansson <olof@lixom.net> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/pasemi_mac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/pasemi_mac.c b/drivers/net/pasemi_mac.c
index 9f9a421c99b3..ab4d309a858f 100644
--- a/drivers/net/pasemi_mac.c
+++ b/drivers/net/pasemi_mac.c
@@ -550,7 +550,7 @@ static int pasemi_mac_clean_rx(struct pasemi_mac *mac, int limit)
n = mac->rx->next_to_clean;
- prefetch(RX_RING(mac, n));
+ prefetch(&RX_RING(mac, n));
for (count = 0; count < limit; count++) {
macrx = RX_RING(mac, n);