Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=88a15f2e28bd6a908b2925f1b76e70ef3a88297d
Commit:     88a15f2e28bd6a908b2925f1b76e70ef3a88297d
Parent:     293c8513398657f6263fcdb03c87f2760cf61be4
Author:     Emil Medve <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 15 08:43:50 2007 -0500
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Mon Oct 15 14:49:12 2007 -0400

    ucc_geth: Fix build break introduced by commit 
09f75cd7bf13720738e6a196cc0107ce9a5bd5a0
    
    drivers/net/ucc_geth.c: In function 'ucc_geth_rx':
    drivers/net/ucc_geth.c:3483: error: 'dev' undeclared (first use in this 
function)
    drivers/net/ucc_geth.c:3483: error: (Each undeclared identifier is reported 
only once
    drivers/net/ucc_geth.c:3483: error: for each function it appears in.)
    make[2]: *** [drivers/net/ucc_geth.o] Error 1
    
    Signed-off-by: Emil Medve <[EMAIL PROTECTED]>
    Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/ucc_geth.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c
index d00e7d4..bec413b 100644
--- a/drivers/net/ucc_geth.c
+++ b/drivers/net/ucc_geth.c
@@ -63,7 +63,7 @@
 #define UGETH_MSG_DEFAULT      (NETIF_MSG_IFUP << 1 ) - 1
 
 void uec_set_ethtool_ops(struct net_device *netdev);
-       
+
 static DEFINE_SPINLOCK(ugeth_lock);
 
 static struct {
@@ -3454,9 +3454,12 @@ static int ucc_geth_rx(struct ucc_geth_private *ugeth, 
u8 rxQ, int rx_work_limit
        u16 length, howmany = 0;
        u32 bd_status;
        u8 *bdBuffer;
+       struct net_device * dev;
 
        ugeth_vdbg("%s: IN", __FUNCTION__);
 
+       dev = ugeth->dev;
+
        /* collect received buffers */
        bd = ugeth->rxBd[rxQ];
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to