07 May, 2011

1 commit

  • If staging:vt6655 is built without CONFIG_DM being defined, there are large
    numbers of warnings of the following form due to use of #if instead of #ifdef:

    In file included from drivers/staging/vt6655/upc.h:32,
    from drivers/staging/vt6655/mac.h:39,
    from drivers/staging/vt6655/wroute.c:34:
    drivers/staging/vt6655/device.h:399:5: warning: "CONFIG_PM" is not defined

    Signed-off-by: Larry Finger
    Signed-off-by: Greg Kroah-Hartman

    Larry Finger
     

26 Apr, 2011

3 commits


08 Apr, 2011

1 commit

  • * 'staging-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6: (28 commits)
    staging: usbip: bugfix for isochronous packets and optimization
    staging: usbip: bugfix add number of packets for isochronous frames
    staging: usbip: bugfixes related to kthread conversion
    staging: usbip: fix shutdown problems.
    staging: hv: Fix GARP not sent after Quick Migration
    staging: IIO: IMU: ADIS16400: Avoid using printk facility directly
    staging: IIO: IMU: ADIS16400: Fix product ID check, skip embedded revision number
    staging: IIO: IMU: ADIS16400: Make sure only enabled scan_elements are pushed into the ring
    staging: IIO: IMU: ADIS16400: Fix addresses of GYRO and ACCEL calibration offset
    staging: IIO: IMU: ADIS16400: Add delay after self test
    staging: IIO: IMU: ADIS16400: Fix up SPI messages cs_change behavior
    staging/rtl81*: build as loadable modules only
    staging: brcm80211: removed 'is_amsdu causing toss' log spam
    staging: brcm80211: fix for 'Short CCK' log spam
    staging: brcm80211: fix for 'AC_BE txop..' logs spammed problem
    staging: memrar: remove driver from tree
    staging: sep: remove last memrar remnants
    staging: fix hv_mouse build, needs delay.h
    staging: fix olpc_dcon build errors
    staging: sm7xx: fixed defines
    ...

    Fix up trivial conflict in drivers/staging/memrar/memrar_handler.c
    (deleted vs trivial spelling fixes)

    Linus Torvalds
     

05 Apr, 2011

1 commit


31 Mar, 2011

1 commit


15 Mar, 2011

1 commit


01 Mar, 2011

1 commit


22 Jan, 2011

1 commit


17 Nov, 2010

1 commit


29 Oct, 2010

1 commit


06 Oct, 2010

1 commit


21 Sep, 2010

3 commits


17 Sep, 2010

2 commits


01 Sep, 2010

2 commits

  • An error code is stored in a variable, but 0 is returned instead. Use the
    variable instead of 0.

    The semantic match that finds this problem is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @r@
    local idexpression x;
    constant C;
    @@

    if (...) { ...
    x = -C
    ... when != x
    (
    return ;
    |
    return NULL;
    |
    return;
    |
    * return ...;
    )
    }
    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Greg Kroah-Hartman

    Julia Lawall
     
  • IRQ and resource[] may not have correct values until
    after PCI hotplug setup occurs at pci_enable_device() time.

    The semantic match that finds this problem is as follows:

    //
    @@
    identifier x;
    identifier request ~= "pci_request.*|pci_resource.*";
    @@

    (
    * x->irq
    |
    * x->resource
    |
    * request(x, ...)
    )
    ...
    *pci_enable_device(x)
    //

    Signed-off-by: Kulikov Vasiliy
    Signed-off-by: Greg Kroah-Hartman

    Kulikov Vasiliy
     

03 Aug, 2010

3 commits


09 Jul, 2010

2 commits


26 Jun, 2010

2 commits


25 Jun, 2010

3 commits


23 Jun, 2010

3 commits

  • Use unsigned long instead.

    Signed-off-by: Charles Clément

    Charles Clément
     
  • Signed-off-by: Charles Clément

    Charles Clément
     
  • Move functions managing the channel mapping to a new channel.c file, as done in
    the staging VT6656 driver. The function names contained in card.c were prefixed
    with CARD followed by the first letter of the return code, remove this and use
    more coherent function names.

    The following functions moved and were renamed:

    ChannelValid -> is_channel_valid
    CARDbSetChannel -> set_channel
    CARDvInitChannelTable -> init_channel_table
    CARDbyGetChannelMapping -> get_channel_mapping
    CARDvSetCountryInfo -> set_country_info
    CARDbySetSupportChannels -> set_support_channels
    CARDbChannelGetList -> channel_get_list
    CARDvSetCountryIE -> set_country_IE
    CARDbGetChannelMapInfo -> get_channel_map_info
    CARDvSetChannelMapInfo -> set_channel_map_info
    CARDvClearChannelMapInfo -> clear_channel_map_info
    CARDbyAutoChannelSelect -> auto_channel_select
    CARDbyGetChannelNumber -> get_channel_number

    Signed-off-by: Charles Clément
    Signed-off-by: Greg Kroah-Hartman

    Charles Clément
     

19 Jun, 2010

7 commits