]> git.pld-linux.org Git - packages/atmelwlandriver.git/blob - atmelwlandriver-gcc4.patch
- cut the crap from %post (use /etc/modprobe.d to provide modprobe config)
[packages/atmelwlandriver.git] / atmelwlandriver-gcc4.patch
1 --- atmelwlandriver/src/Pcmcia_Pci/fastvnet_cs.c.orig   2004-11-10 10:40:50.000000000 +0100
2 +++ atmelwlandriver/src/Pcmcia_Pci/fastvnet_cs.c        2005-06-07 20:51:32.000000000 +0200
3 @@ -1894,7 +1894,7 @@
4    u64* pTime = (u64*) tCurrentTime; 
5    struct timeval timev;
6    do_gettimeofday(&timev);
7 -  (u64) (*pTime) = timev.tv_sec * 10000000;
8 +  *pTime = timev.tv_sec * 10000000;
9  };
10  
11  int atmel_assoc_info_event (struct net_device *dev, PVNet_ADAPTER Adapter)
12 --- atmelwlandriver/src/usb/rx.c.orig   2004-11-10 10:40:50.000000000 +0100
13 +++ atmelwlandriver/src/usb/rx.c        2005-06-07 21:15:27.000000000 +0200
14 @@ -746,7 +746,7 @@
15                             Adapter->RxInBuff.WirelessPacket +
16                             MGMT_FRAME_BODY_OFFSET;
17  
18 -                       (UCHAR) Adapter->ErrorCode =
19 +                       Adapter->ErrorCode =
20                             (UCHAR) *
21                             (PUSHORT) &
22                             AssociationRspnsFrame
23 --- atmelwlandriver/src/usb/vnetusba.c.orig     2004-11-10 10:40:50.000000000 +0100
24 +++ atmelwlandriver/src/usb/vnetusba.c  2005-06-07 21:16:52.000000000 +0200
25 @@ -847,7 +847,7 @@
26    u64* pTime = (u64*) tCurrentTime; 
27    struct timeval timev;
28    do_gettimeofday(&timev);
29 -  (u64) (*pTime) = timev.tv_sec * 10000000;
30 +  *pTime = timev.tv_sec * 10000000;
31  };
32  
33  int atmel_assoc_info_event (PVNet_ADAPTER Adapter)
This page took 0.047008 seconds and 3 git commands to generate.