1. 08 Jul, 2010 26 commits
  2. 25 Jun, 2010 7 commits
  3. 24 Jun, 2010 7 commits
    • Charles Clément's avatar
      Staging: vt6655: remove BYTE typedef · 3fc9b584
      Charles Clément authored
      Replace all occurrences with unsigned char type.
      Signed-off-by: default avatarCharles Clément <caratorn@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      3fc9b584
    • Charles Clément's avatar
      Staging: vt6655: remove WORD typedef · 2986db5f
      Charles Clément authored
      Replace all occurrences with unsigned short type.
      Signed-off-by: default avatarCharles Clément <caratorn@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      2986db5f
    • Charles Clément's avatar
      Staging: vt6655: remove DWORD typedef · 0f4c60d6
      Charles Clément authored
      Replace all occurrences with unsigned long type, except for pointer fields that
      should be u32 in packed structures and 8-byte-aligned 8 byte long structure
      QWORD.
      
      Thanks to Jiri Slaby for pointing out that simply replacing by unsigned long is
      wrong on x86-64 arch.
      Signed-off-by: default avatarCharles Clément <caratorn@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      0f4c60d6
    • H Hartley Sweeten's avatar
      Staging: d53155_drv.c: cleanup fbuffer usage · 17701d14
      H Hartley Sweeten authored
      The global symbol dt3155_fbuffer[], declared in dt3155_isr.c, is really
      just a pointer to dt3155_status[].fbuffer. To improve readability, make
      some of the really long lines shorter, and make the buffer access more
      consistent, use &dt3155_status[].fbuffer to access the buffer structure.
      Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
      Cc: Scott Smedley <ss@aao.gov.au>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      17701d14
    • Randy Dunlap's avatar
      Staging: fix wlan-ng depends · 9f79211c
      Randy Dunlap authored
      drivers/built-in.o: In function `wlan_free_wiphy':
      (.text+0x3f5eb5): undefined reference to `wiphy_unregister'
      drivers/built-in.o: In function `wlan_free_wiphy':
      (.text+0x3f5ec4): undefined reference to `wiphy_free'
      drivers/built-in.o: In function `wlan_create_wiphy':
      (.text+0x3f5f76): undefined reference to `wiphy_new'
      drivers/built-in.o: In function `wlan_create_wiphy':
      (.text+0x3f6024): undefined reference to `wiphy_register'
      drivers/built-in.o: In function `prism2_roamed':
      (.text+0x3f61f7): undefined reference to `cfg80211_roamed'
      drivers/built-in.o: In function `prism2_disconnected':
      (.text+0x3f6223): undefined reference to `cfg80211_disconnected'
      drivers/built-in.o: In function `prism2_connect_result':
      (.text+0x3f626d): undefined reference to `cfg80211_connect_result'
      drivers/built-in.o: In function `prism2_connect':
      (.text+0x3f62b6): undefined reference to `ieee80211_frequency_to_channel'
      drivers/built-in.o: In function `prism2_scan':
      (.text+0x3f6679): undefined reference to `ieee80211_frequency_to_channel'
      drivers/built-in.o: In function `prism2_scan':
      (.text+0x3f6873): undefined reference to `__ieee80211_get_channel'
      drivers/built-in.o: In function `prism2_scan':
      (.text+0x3f68cc): undefined reference to `cfg80211_inform_bss'
      drivers/built-in.o: In function `prism2_scan':
      (.text+0x3f6942): undefined reference to `cfg80211_scan_done'
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      9f79211c
    • Randy Dunlap's avatar
      Staging: zram: fix build errors, depends on BLOCK · 8946a086
      Randy Dunlap authored
      Fix 49 zram build errors in one swoop.  Examples:
      
      drivers/staging/zram/zram_drv.c:225: error: dereferencing pointer to incomplete type
      drivers/staging/zram/zram_drv.c:226: error: implicit declaration of function 'bio_for_each_segment'
      drivers/staging/zram/zram_drv.c:226: error: expected ';' before '{' token
      drivers/staging/zram/zram_drv.c:281: error: implicit declaration of function 'bio_endio'
      drivers/staging/zram/zram_drv.c:285: error: implicit declaration of function 'bio_io_error'
      drivers/staging/zram/zram_drv.c:545: error: implicit declaration of function 'set_capacity'
      drivers/staging/zram/zram_drv.c:548: error: implicit declaration of function 'queue_flag_set_unlocked'
      drivers/staging/zram/zram_drv.c:548: error: 'QUEUE_FLAG_NONROT' undeclared (first use in this function)
      drivers/staging/zram/zram_drv.c:548: error: dereferencing pointer to incomplete type
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Cc: Nitin Gupta <ngupta@vflare.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      8946a086
    • Andres More's avatar
      staging: vt6656: replace IS_ETH_ADDRESS_EQUAL with compare_ether_addr · 4722a26c
      Andres More authored
      Code cleanup, removed custom macro to compare Ethernet addresses.
      Some checkpatch warnings on indentation were not resolved.
      
      The return value of compare_ether_addr was reversed, something to consider.
      Signed-off-by: default avatarAndres More <more.andres@gmail.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
      4722a26c