Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=122d76bd872d07d428f94c509428a65476e9b1af
Commit:     122d76bd872d07d428f94c509428a65476e9b1af
Parent:     6f30e1867cb73602c6ed7f97e15a48e0a0c96cde
Author:     Jan Altenberg <[EMAIL PROTECTED]>
AuthorDate: Mon Mar 5 13:29:55 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Mar 5 13:29:55 2007 -0800

    [GIANFAR]: Fix compile error in latest git
    
    I recognized a compile error in latest git:
    
    /here/workdir/git/drivers/net/gianfar.c: In function 
`gfar_vlan_rx_kill_vid':
    /here/workdir/git/drivers/net/gianfar.c:1135: error: structure has no 
member named `vgrp'
    
    This error was introduced in commit:
    
    commit 6d04e3b04b6ab569cabeb5ca28ad1be11777e895
     ...
          [VLAN]: Avoid a 4-order allocation.
    
    
    Signed-off-by: Jan Altenberg <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/gianfar.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 02b61b8..d981d4c 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -1132,7 +1132,7 @@ static void gfar_vlan_rx_kill_vid(struct net_device *dev, 
uint16_t vid)
 
        spin_lock_irqsave(&priv->rxlock, flags);
 
-       vlan_group_set_device(priv->vgrp, vid, NULL);
+       vlan_group_set_device(priv->vlgrp, vid, NULL);
 
        spin_unlock_irqrestore(&priv->rxlock, flags);
 }
-
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