Changeset 1497

Show
Ignore:
Timestamp:
04/06/06 15:36:03 (3 years ago)
Author:
kelmo
Message:

Change the ARP type of wifiX interfaces to ARPHRD_IEEE80211. This is
to signal that the wifiX device is not a usable ethernet device.

Signed-off-by: Elias Oltmanns <oltmanns@uni-bonn.de>
Signed-off-by: Kel Modderman <kelrin@tpg.com.au>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ath/if_ath_pci.c

    r1437 r1497  
    186186        dev->mem_start = mem; 
    187187        dev->mem_end = mem + pci_resource_len(pdev, 0); 
     188        /* 
     189         * Don't leave arp type as ARPHRD_ETHER as this is no eth device 
     190         */ 
     191        dev->type = ARPHRD_IEEE80211; 
    188192 
    189193        SET_MODULE_OWNER(dev);