1. 07 5月, 2017 3 次提交
  2. 01 5月, 2017 8 次提交
  3. 27 4月, 2017 6 次提交
  4. 26 4月, 2017 5 次提交
  5. 23 4月, 2017 1 次提交
  6. 19 4月, 2017 13 次提交
  7. 18 4月, 2017 4 次提交
    • G
      Merge tag 'iio-for-4.12d' of... · d47e5382
      Greg Kroah-Hartman 提交于
      Merge tag 'iio-for-4.12d' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next
      
      Jonathan writes:
      
      Fourth set of IIO new device support, features and cleanups for the 4.12 cycle
      
      New device support
      * max1117, 1118 and 1119
        - new ADC driver
      * max9611
        - new ADC driver
      * pm8xxx hk/xoadc
        - new driver with some shared features broken out from the SPMI vadc.
      * sun4i-gpadc
        - A33 thermal sensor support (with associated rework)
      * stm32-dac
        - new driver and bindings
      * stm32 trigger
        - enable support of quadrature encoder device and counter modes
      
      Features
      * apds9960
        - use the runtime pm for normal suspend
      * stm32-adc
        - add opition to sest resolution via devicetree
      * xoadc
        - augment DT bindings to deal with some weird mux cases
      
      Cleanups
      * ad5933
        - protect direct mode using claim and release helpers
      * ade7759
        - S_IRUGO and friends to octal in two goes
      * adis16203
        - drop unnecessary brackets
      * hid-sensor
        - fix unbalanced pm_runtieme_enable error when probing after remove
      * lsm6dsx
        - use actual part numbers for device name when known
        - simplify data read pin parsing
      * mpu3050
        - avoid double reporting errors
      d47e5382
    • M
      staging: rtl8192u: fix incorrect type in assignment in ieee80211_tx.c · 18125dc0
      Martin Karamihov 提交于
      This patch fixes the following sparse warning:
      ieee80211_tx.c:174:36: incorrect type in assignment (different base types)
      ieee80211_tx.c:174:36: expected unsigned short [unsigned] [short] [usertype] <noident>
      ieee80211_tx.c:174:36: got restricted __be16 [usertype] <noident>
      
      by adding left side cast to __be16.
      Signed-off-by: NMartin Karamihov <martinowar@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      18125dc0
    • A
      staging: rtl8188eu: fix sparse signedness warnings in rtw_generate_ie · df93c720
      Aishwarya Pant 提交于
      Changed the type of wpa_ie_len from (int *) to (unsigned int *) in the
      function rtw_get_wpa_ie(..) to suppress signedness mismatch warnings in
      rtw_generate_ie of the type-
      
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:1009:60: warning: incorrect
      type in argument 2 (different signedness)
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:1009:60:    expected int
      *wpa_ie_len
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:1009:60:    got unsigned
      int *<noident>
      Signed-off-by: NAishwarya Pant <aishpant@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      df93c720
    • A
      staging: rtl8188eu: fix sparse signedness warnings in rtw_set_ie · 8321643c
      Aishwarya Pant 提交于
      Changed the type of sz from (int) to (unsigned int) to suppress
      signedness mismatch warnings of the type-
      
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:258:97: warning:
      incorrect type in argument 5 (different signedness)
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:258:97:    expected
      unsigned int [usertype] *frlen
      drivers/staging/rtl8188eu//core/rtw_ieee80211.c:258:97:    got int
      *<noident>
      Signed-off-by: NAishwarya Pant <aishpant@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      8321643c