Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4f14b92f454150293d79031d210cc678329f3e02
Commit:     4f14b92f454150293d79031d210cc678329f3e02
Parent:     aa738adf89deede805d821feddd5b07999904ffd
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 9 23:41:40 2008 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Sat Feb 9 23:41:40 2008 -0800

    via-velocity: section fix
    
    From: Andrew Morton <[EMAIL PROTECTED]>
    
    gcc-3.4.4 on powerpc:
    
    drivers/net/via-velocity.c:443: error: chip_info_table causes a section 
type conflict
    
    on this one I had to remove the __devinitdata too.  Don't know why.
    
    Cc: Jeff Garzik <[EMAIL PROTECTED]>
    Cc: Sam Ravnborg <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/via-velocity.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c
index 8c9fb82..cc0addb 100644
--- a/drivers/net/via-velocity.c
+++ b/drivers/net/via-velocity.c
@@ -440,7 +440,7 @@ static void velocity_unregister_notifier(void)
  *     Internal board variants. At the moment we have only one
  */
 
-static const struct velocity_info_tbl chip_info_table[] __devinitdata = {
+static struct velocity_info_tbl chip_info_table[] = {
        {CHIP_TYPE_VT6110, "VIA Networking Velocity Family Gigabit Ethernet 
Adapter", 1, 0x00FFFFFFUL},
        { }
 };
-
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