]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/log
mirror_ubuntu-bionic-kernel.git
5 years agohid: Reduce default mouse polling interval to 60Hz
popcornmix [Mon, 14 Jul 2014 21:02:09 +0000 (22:02 +0100)]
hid: Reduce default mouse polling interval to 60Hz

Reduces overhead when using X

(cherry picked from commit 2005ce5eefed1bb668c8f6cbaee8b9e2e2d4af96
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Don't wait for vblank on fkms cursor updates.
Eric Anholt [Mon, 5 Feb 2018 18:53:18 +0000 (18:53 +0000)]
drm/vc4: Don't wait for vblank on fkms cursor updates.

We don't use the same async update path between fkms and normal kms,
and the normal kms workaround ended up making us wait.  This became a
larger problem in rpi-4.14.y, as the USB HID update rate throttling
got (accidentally?) dropped.

Signed-off-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit e66aa155716afe1f58e9bbe69b882bca28ae3e46
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Remove duplicate primary/cursor fields from FKMS driver.
Eric Anholt [Mon, 5 Feb 2018 18:22:03 +0000 (18:22 +0000)]
drm/vc4: Remove duplicate primary/cursor fields from FKMS driver.

The CRTC has those fields and we can just use them.

Signed-off-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit 2ad1a992b5194a01d2dbde9eead1d7a1e2b2677d
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Skip SET_CURSOR_INFO when the cursor contents didn't change.
Eric Anholt [Mon, 5 Feb 2018 18:02:30 +0000 (18:02 +0000)]
drm/vc4: Skip SET_CURSOR_INFO when the cursor contents didn't change.

Signed-off-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit 32161ae7d5bbc9b2b6fe629ef9d631b927da93e1
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Fix warning about vblank interrupts before DRM core is ready.
Eric Anholt [Mon, 5 Feb 2018 18:01:02 +0000 (18:01 +0000)]
drm/vc4: Fix warning about vblank interrupts before DRM core is ready.

The SMICS interrupt fires continuously, but since it's 1/100 the rate
of the USB interrupts, we don't really need a way to turn it off.  We
do need to make sure that we don't tell DRM about it until DRM has
asked for the interrupt at least once, because otherwise it will throw
a warning at boot time.

Signed-off-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit 9a62e73e23eabe7459755bccf8dd97bbfa9f5344
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Add support for NV21 and NV61.
Dave Stevenson [Thu, 16 Nov 2017 14:22:31 +0000 (14:22 +0000)]
drm/vc4: Add support for NV21 and NV61.

NV12 (YUV420 2 plane) and NV16 (YUV422 2 plane) were
supported, but NV21 and NV61 (same but with Cb and Cr
swapped) weren't. Add them.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: https://patchwork.freedesktop.org/patch/msgid/1f50799525e3401551dff2b0b2828b9ab892f75f.1510841336.git.dave.stevenson@raspberrypi.org
(cherry picked from commit cb20dd170d6a7d41e0f347998771b0e0db183438
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
(cherry picked from commit 8da3b3bdf8bbe09d5bd80376ca03c97c1a4fb27f
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Use .pixel_order instead of custom .flip_cbcr
Dave Stevenson [Thu, 16 Nov 2017 14:22:30 +0000 (14:22 +0000)]
drm/vc4: Use .pixel_order instead of custom .flip_cbcr

The hardware has enums for altering the Cr and Cb order,
so use this instead of having a flag which swaps the
order the pointers are presented to the hardware
(that only worked for 3 plane formats anyway).

Explicitly sets .pixel_order in each case, rather than
relying on then default XYCBCR order being a value 0.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: https://patchwork.freedesktop.org/patch/msgid/563872b69c1e5df142cb15ebfca7f20056b8a64c.1510841336.git.dave.stevenson@raspberrypi.org
(cherry picked from commit 090cb0c690183be849e2bfa0427220f1e435fa30
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
(cherry picked from commit a640c4fb7190d4e23b60ec18e01105dfa669799c
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Add support for DRM_FORMAT_RGB888 and DRM_FORMAT_BGR888
Dave Stevenson [Thu, 16 Nov 2017 14:22:29 +0000 (14:22 +0000)]
drm/vc4: Add support for DRM_FORMAT_RGB888 and DRM_FORMAT_BGR888

Filling out the list of supported formats based on those the
hardware can support.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: https://patchwork.freedesktop.org/patch/msgid/b551205d1c33fa49eef2c33ed2d60c5339b2f299.1510841336.git.dave.stevenson@raspberrypi.org
(cherry picked from commit 88f8156fba43d040dc5af42f88db2c53d6c69443
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
(cherry picked from commit 75c798fae3a44b9c7751573948a2e2a43de7a66a
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agodrm/vc4: Reject HDMI modes with too high of clocks.
Eric Anholt [Wed, 20 Sep 2017 22:59:34 +0000 (15:59 -0700)]
drm/vc4: Reject HDMI modes with too high of clocks.

Peter Robinson reported issues on Fedora with 4k monitors not having
their modes filtered down to 1920x1080 on Raspberry Pi.

v2: Fix vc5 typo in place of vc4.

Cc: Peter Robinson <pbrobinson@redhat.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Link: https://patchwork.freedesktop.org/patch/msgid/20170920225935.14566-1-eric@anholt.net
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
(cherry picked from commit 32e823c63e90f7535ea1cc5311d25c0233e1456d
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
(cherry picked from commit 0be00429c02f72d058dfb0b93e8c9547b633144d
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Revert to do page-table-walk-based cache manipulating on some ioctl calls
Sugizaki Yukimasa [Tue, 9 Jan 2018 21:25:51 +0000 (06:25 +0900)]
vcsm: Revert to do page-table-walk-based cache manipulating on some ioctl calls

On FLUSH, INVALID, CLEAN_INVALID ioctl calls, cache operations based on
page table walk were used in case that the buffer of the cache is not
pinned.  So reverted to do page-table-based cache manipulating.

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit b5a40e4b66f25056c1c2f30ea9a7d2d131672b75
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Add no-op cache operation constant
Sugizaki Yukimasa [Tue, 9 Jan 2018 19:32:20 +0000 (04:32 +0900)]
vcsm: Add no-op cache operation constant

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 6e3d5ea5d602ae145bf7502933fff44ad3a28926
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Fix obscure conditions again
Sugizaki Yukimasa [Tue, 9 Jan 2018 03:33:24 +0000 (12:33 +0900)]
vcsm: Fix obscure conditions again

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 1e50c777f3bf2bbdb6bb602c878ad193727cf728
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Describe the use of cache operation constants
Sugizaki Yukimasa [Mon, 8 Jan 2018 12:15:13 +0000 (21:15 +0900)]
vcsm: Describe the use of cache operation constants

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit f17b998f3a1479e59534b5af9594e42aeb0a2c74
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Fix memory leaking on clean_invalid2 ioctl handler
Sugizaki Yukimasa [Mon, 8 Jan 2018 12:11:23 +0000 (21:11 +0900)]
vcsm: Fix memory leaking on clean_invalid2 ioctl handler

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit e4e696b0bbc08d71b854ed26218f2a5fb3efcaca
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Fix obscure conditions
Sugizaki Yukimasa [Mon, 8 Jan 2018 12:07:17 +0000 (21:07 +0900)]
vcsm: Fix obscure conditions

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 87c32e0031ef64a4a12b2240b701b7c1318e2c50
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Unify cache manipulating functions
Sugizaki Yukimasa [Thu, 4 Jan 2018 15:44:00 +0000 (00:44 +0900)]
vcsm: Unify cache manipulating functions

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 0314a74b54cafa68a175e98091117c52db8d674b
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Support for finding user/vc handle in memory pool
Sugizaki Yukimasa [Thu, 4 Jan 2018 15:01:30 +0000 (00:01 +0900)]
vcsm: Support for finding user/vc handle in memory pool

vmcs_sm_{usr,vc}_handle_from_pid_and_address() were failing to find
handle if specified user pointer is not exactly the one that the memory
locking call returned even if the pointer is in range of map/resource.
So fixed the functions to match the range.

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 662ef06002e3d43ad76671bb9598cd61e265bef5
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agovcsm: Define cache operation constants in user header
Sugizaki Yukimasa [Thu, 4 Jan 2018 14:58:06 +0000 (23:58 +0900)]
vcsm: Define cache operation constants in user header

Without this change, users have to use raw values (1, 2, 3) to specify
cache operation.

Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com>
(cherry picked from commit 55b31490ae9d428fb32706916ec0c135c05f6206
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoRemove build products from the source tree
Phil Elwell [Wed, 21 Mar 2018 15:05:48 +0000 (15:05 +0000)]
Remove build products from the source tree

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
(cherry picked from commit 15f547c94f2fc3a21e7f08d95eabae112db3bfb1
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agolan78xx: Change LEDs to include 10Mb activity
Phil Elwell [Fri, 9 Mar 2018 17:28:07 +0000 (17:28 +0000)]
lan78xx: Change LEDs to include 10Mb activity

The default LED modes put 1000Mb/activity on orange and 100Mb/activity
on green, but this leaves no indication for a 10Mb link. Change the
defaults to put 10Mb/100Mb/activity on green.

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
(cherry picked from commit 1c1a8c5cdcd24a279d8194774e7e7047b7519f5c
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agolan78xx: Read initial EEE status from DT
Phil Elwell [Fri, 9 Mar 2018 12:01:00 +0000 (12:01 +0000)]
lan78xx: Read initial EEE status from DT

Add two new DT properties:
* microchip,eee-enabled  - a boolean to enable EEE
* microchip,tx-lpi-timer - time in microseconds to wait before entering
                           low power state

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
(cherry picked from commit 3aa9eb6eeffde4c317b41f488de0682fc027d768
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoBCM270X_DT: Add Pi 3+ dts files
Phil Elwell [Fri, 21 Jul 2017 10:33:25 +0000 (11:33 +0100)]
BCM270X_DT: Add Pi 3+ dts files

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
(cherry picked from commit 741b2171d923106c720cd406fd3f500e3ebd861f
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoconfig: Set CONFIG_USB_LAN78XX=y
Phil Elwell [Thu, 8 Feb 2018 15:08:57 +0000 (15:08 +0000)]
config: Set CONFIG_USB_LAN78XX=y

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
(cherry picked from commit 024693d124d75bd48c5b8617b3d3a11c1934d81e
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoconfigs: Remove vestigial setting
Phil Elwell [Wed, 14 Mar 2018 15:32:02 +0000 (15:32 +0000)]
configs: Remove vestigial setting

(cherry picked from commit 065ecc12f9aa870a5fb9533eb62fc74c2036b265
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoadded capture_clear option to pps-gpio via dtoverlay (#2433)
hdoverobinson [Tue, 13 Mar 2018 10:58:39 +0000 (06:58 -0400)]
added capture_clear option to pps-gpio via dtoverlay (#2433)

(cherry picked from commit dfff43426667c3c4f063de7bcf65993573a9e5e9
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agonet: rtl8192cu: Fix implicit fallthrough warnings
Nathan Chancellor [Mon, 5 Mar 2018 03:07:35 +0000 (20:07 -0700)]
net: rtl8192cu: Fix implicit fallthrough warnings

These warnings appear with GCC 7.3.0 from toolchains.bootlin.com:

../drivers/net/wireless/realtek/rtl8192cu/core/rtw_mlme_ext.c: In function ‘mgt_dispatcher’:
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_mlme_ext.c:734:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
    if(check_fwstate(pmlmepriv, WIFI_AP_STATE) == _TRUE)
      ^
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_mlme_ext.c:739:3: note: here
   case WIFI_ASSOCREQ:
   ^~~~
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_phycfg.c: In function ‘phy_TxPwrIdxToDbm’:
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_phycfg.c:2365:10: warning: this statement may fall through [-Wimplicit-fallthrough=]
   Offset = -8;
   ~~~~~~~^~~~
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_phycfg.c:2366:2: note: here
  default:
  ^~~~~~~
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/usb/usb_halinit.c: In function ‘GetHwReg8192CU’:
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/usb/usb_halinit.c:5694:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
    *((u16 *)(val)) = pHalData->BasicRateSet;
    ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/usb/usb_halinit.c:5695:3: note: here
   case HW_VAR_TXPAUSE:
   ^~~~
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_linux.c: In function ‘set_group_key’:
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_linux.c:7383:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
    keylen = 16;
    ~~~~~~~^~~~
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_linux.c:7384:3: note: here
   default:
   ^~~~~~~
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_cfg80211.c: In function ‘set_group_key’:
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_cfg80211.c:822:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
    keylen = 16;
    ~~~~~~~^~~~
../drivers/net/wireless/realtek/rtl8192cu/os_dep/linux/ioctl_cfg80211.c:823:3: note: here
   default:
   ^~~~~~~

None of them appear to be a real issue but it is trivial to make the
warnings go away.

Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 2d9f477a266146e5d5180be853d62bd2f1d35ca0
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agonet: rtl8192cu: Fix outstanding GCC 6.4.0 warnings
Francisco Facioni [Sat, 28 May 2016 17:15:27 +0000 (14:15 -0300)]
net: rtl8192cu: Fix outstanding GCC 6.4.0 warnings

Compiler used: toolchains.bootlin.com

Reference: https://github.com/diederikdehaas/rtl8812AU

[@nathanchance: Cherry-picked from 6c1987881822 and updated message]
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 4628e36c0caaa7806ffcd98286eab2705d37e3be
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agonet: rtl8192cu: Normalize indentation
Nathan Chancellor [Sun, 4 Mar 2018 06:31:22 +0000 (23:31 -0700)]
net: rtl8192cu: Normalize indentation

These warnings appear with GCC 6.4.0 from toolchains.bootlin.com:

../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c: In function ‘aes_cipher’:
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c:1504:5: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation]
     for (j = 0; j < 8; j++)
     ^~~
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c:1507:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘for’
  payload_index = hdrlen + 8;
  ^~~~~~~~~~~~~
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c: In function ‘aes_decipher’:
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c:1878:5: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation]
     for (j = 0; j < 8; j++)
     ^~~
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_security.c:1881:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘for’
  payload_index = hdrlen + 8;
  ^~~~~~~~~~~~~

../drivers/net/wireless/realtek/rtl8192cu/core/rtw_mlme_ext.c:5666:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
     if( _rtw_memcmp(pwdinfo->rx_prov_disc_info.peerDevAddr, empty_addr, ETH_ALEN) );
     ^~
../drivers/net/wireless/realtek/rtl8192cu/core/rtw_mlme_ext.c:5667:6: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
      _rtw_memcpy(pwdinfo->rx_prov_disc_info.peerDevAddr, GetAddr2Ptr(pframe), ETH_ALEN);
      ^~~~~~~~~~~

It appears to be due to tabs versus spaces.

Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit ebaa4fc86f43de359041a1584526facee123eba1
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agonet: rtl8192cu: Fix off-by-one warning
Marc Kleine-Budde [Sat, 12 Sep 2015 15:29:59 +0000 (17:29 +0200)]
net: rtl8192cu: Fix off-by-one warning

../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_rf6052.c: In function ‘PHY_RFShadowRefresh’:
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_rf6052.c:1020:37: warning: iteration 63 invokes undefined behavior [-Waggressive-loop-optimizations]
    RF_Shadow[eRFPath][Offset].Value = 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
../drivers/net/wireless/realtek/rtl8192cu/hal/rtl8192c/rtl8192c_rf6052.c:1018:3: note: within this loop
   for (Offset = 0; Offset <= RF6052_MAX_REG; Offset++)
   ^~~

Signed-off-by: Marc Kleine-Budde <mkl@blackshift.org>
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 4d5eaefbf3b9ecca13a03f4b0f3ba618cad69f1e
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUpdate arm64 Makefile to compile bcm2710 dtb file
davidw5 [Fri, 9 Mar 2018 14:17:17 +0000 (01:17 +1100)]
Update arm64 Makefile to compile bcm2710 dtb file

The line 'dtb-$(CONFIG_ARCH_BCM2835) += bcm2710-rpi-3-b.dtb' has been copied from previous rpi-4.14.y version into rpi-4.15.y arch/arm64/boot/dts/broadcom/Makefile to restore compilation of bcm2710-rpi-3-b.dtb device tree blob under 'make ARCH=arm64 dtbs' command.
(cherry picked from commit 83e3957d6e771a5410d250fc546cf3a6279fcd19
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agousb: dwb_otg: Fix unreachable switch statement warning
Nathan Chancellor [Mon, 5 Mar 2018 03:09:26 +0000 (20:09 -0700)]
usb: dwb_otg: Fix unreachable switch statement warning

This warning appears with GCC 7.3.0 from toolchains.bootlin.com:

../drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c: In function ‘fiq_fsm_update_hs_isoc’:
../drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c:595:61: warning: statement will never be executed [-Wswitch-unreachable]
   st->hctsiz_copy.b.xfersize = nrpackets * st->hcchar_copy.b.mps;
                                            ~~~~~~~~~~~~~~~~~^~~~

Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 2ba68424f7b6f564743ff5bf83084b61f35846aa
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agostaging: vchiq_arm: Remove unused variable
Nathan Chancellor [Sun, 4 Mar 2018 06:34:50 +0000 (23:34 -0700)]
staging: vchiq_arm: Remove unused variable

This warning appears with GCC 6.4.0 from toolchains.bootlin.com:

../drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c: In function ‘vchiq_open’:
../drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c:1735:7: warning: unused variable ‘ret’ [-Wunused-variable]
   int ret;
       ^~~

This variable's usage was removed by commit 3c980263c592 ("staging:
vchiq_arm: Make debugfs failure non-fatal"), making it useless.

Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 84b317f420d54a84cd7ca71c116c94b84d7b56a9
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agosound: bcm: Fix memset dereference warning
Nathan Chancellor [Mon, 5 Mar 2018 00:20:25 +0000 (17:20 -0700)]
sound: bcm: Fix memset dereference warning

This warning appears with GCC 6.4.0 from toolchains.bootlin.com:

../sound/soc/bcm/allo-piano-dac-plus.c: In function ‘snd_allo_piano_dac_init’:
../sound/soc/bcm/allo-piano-dac-plus.c:711:30: warning: argument to ‘sizeof’ in ‘memset’ call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
  memset(glb_ptr, 0x00, sizeof(glb_ptr));
                              ^

Suggested-by: Phil Elwell <phil@raspberrypi.org>
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
(cherry picked from commit 1436697785725063122d9daf9af5d79dc709b06f
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUpdate dts Makefile to include overlays directory
davidw5 [Wed, 7 Mar 2018 22:23:05 +0000 (09:23 +1100)]
Update dts Makefile to include overlays directory

Add "subdir-y += overlays" to arch/arm64/boot/dts/Makefile to enable 'make ARCH=arm64 dtbs' to generate overlay .dtbo files
(cherry picked from commit 7301d001900704050553bf4ab4e503475a84d0ab
https://github.com/raspberrypi/linux raspi/rpi-4.15.y)

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Start new release
Seth Forshee [Tue, 10 Apr 2018 18:12:39 +0000 (13:12 -0500)]
UBUNTU: Start new release

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Ubuntu-raspi2-4.15.0-1006.7
Seth Forshee [Wed, 4 Apr 2018 14:04:00 +0000 (09:04 -0500)]
UBUNTU: Ubuntu-raspi2-4.15.0-1006.7

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Start new release
Thadeu Lima de Souza Cascardo [Tue, 3 Apr 2018 12:56:20 +0000 (09:56 -0300)]
UBUNTU: Start new release

Ignore: yes
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
5 years agoUBUNTU: Ubuntu-raspi2-4.15.0-1005.6
Seth Forshee [Fri, 16 Mar 2018 21:38:57 +0000 (16:38 -0500)]
UBUNTU: Ubuntu-raspi2-4.15.0-1005.6

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: [Config] disable retpoline checks for first upload
Seth Forshee [Fri, 16 Mar 2018 21:44:17 +0000 (16:44 -0500)]
UBUNTU: [Config] disable retpoline checks for first upload

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: rebase to Ubuntu-4.15.0-13.14
Seth Forshee [Fri, 16 Mar 2018 21:20:53 +0000 (16:20 -0500)]
UBUNTU: rebase to Ubuntu-4.15.0-13.14

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Start new release
Seth Forshee [Fri, 16 Mar 2018 21:08:16 +0000 (16:08 -0500)]
UBUNTU: Start new release

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Ubuntu-raspi2-4.15.0-1004.5
Seth Forshee [Thu, 15 Mar 2018 18:14:40 +0000 (13:14 -0500)]
UBUNTU: Ubuntu-raspi2-4.15.0-1004.5

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Ubuntu-4.15.0-1004.4
Seth Forshee [Wed, 14 Mar 2018 15:23:15 +0000 (10:23 -0500)]
UBUNTU: Ubuntu-4.15.0-1004.4

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: [Packaging] Refresh raspi2 packaging with changes from master
Seth Forshee [Wed, 14 Mar 2018 21:11:50 +0000 (16:11 -0500)]
UBUNTU: [Packaging] Refresh raspi2 packaging with changes from master

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: SAUCE: Remove execute permissions from source files
Seth Forshee [Fri, 9 Mar 2018 15:34:43 +0000 (16:34 +0100)]
UBUNTU: SAUCE: Remove execute permissions from source files

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Start new release
Seth Forshee [Wed, 14 Mar 2018 15:19:42 +0000 (10:19 -0500)]
UBUNTU: Start new release

Ignore: yes
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
5 years agoUBUNTU: Ubuntu-raspi2-4.15.0-1003.3
Paolo Pisati [Thu, 8 Mar 2018 12:27:17 +0000 (12:27 +0000)]
UBUNTU: Ubuntu-raspi2-4.15.0-1003.3

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: Start new release
Paolo Pisati [Thu, 8 Mar 2018 12:25:43 +0000 (12:25 +0000)]
UBUNTU: Start new release

Ignore: yes
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] W1_SLAVE_DS28E17=m
Paolo Pisati [Thu, 8 Mar 2018 10:52:10 +0000 (10:52 +0000)]
UBUNTU: [Config] W1_SLAVE_DS28E17=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] W1_SLAVE_DS2805=m
Paolo Pisati [Thu, 8 Mar 2018 10:52:05 +0000 (10:52 +0000)]
UBUNTU: [Config] W1_SLAVE_DS2805=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TYPEC_TPS6598X=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:59 +0000 (10:51 +0000)]
UBUNTU: [Config] TYPEC_TPS6598X=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TOUCHSCREEN_S6SY761=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:53 +0000 (10:51 +0000)]
UBUNTU: [Config] TOUCHSCREEN_S6SY761=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TOUCHSCREEN_HIDEEP=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:47 +0000 (10:51 +0000)]
UBUNTU: [Config] TOUCHSCREEN_HIDEEP=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TOUCHSCREEN_EXC3000=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:42 +0000 (10:51 +0000)]
UBUNTU: [Config] TOUCHSCREEN_EXC3000=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TI_DAC082S085=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:36 +0000 (10:51 +0000)]
UBUNTU: [Config] TI_DAC082S085=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TINYDRM_ST7586=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:30 +0000 (10:51 +0000)]
UBUNTU: [Config] TINYDRM_ST7586=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] TINYDRM_REPAPER=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:24 +0000 (10:51 +0000)]
UBUNTU: [Config] TINYDRM_REPAPER=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SND_SOC_WM8524=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:13 +0000 (10:51 +0000)]
UBUNTU: [Config] SND_SOC_WM8524=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SND_SOC_CS43130=m
Paolo Pisati [Thu, 8 Mar 2018 10:51:01 +0000 (10:51 +0000)]
UBUNTU: [Config] SND_SOC_CS43130=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SND_SOC_AMD_CZ_RT5645_MACH=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:55 +0000 (10:50 +0000)]
UBUNTU: [Config] SND_SOC_AMD_CZ_RT5645_MACH=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SERIO_GPIO_PS2=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:50 +0000 (10:50 +0000)]
UBUNTU: [Config] SERIO_GPIO_PS2=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SERIAL_8250_MEN_MCB=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:44 +0000 (10:50 +0000)]
UBUNTU: [Config] SERIAL_8250_MEN_MCB=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SENSORS_TPS53679=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:38 +0000 (10:50 +0000)]
UBUNTU: [Config] SENSORS_TPS53679=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SENSORS_MAX6621=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:32 +0000 (10:50 +0000)]
UBUNTU: [Config] SENSORS_MAX6621=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SENSORS_MAX31785=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:27 +0000 (10:50 +0000)]
UBUNTU: [Config] SENSORS_MAX31785=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] SENSORS_IBM_CFFPS=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:21 +0000 (10:50 +0000)]
UBUNTU: [Config] SENSORS_IBM_CFFPS=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RTC_DRV_PCF85363=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:15 +0000 (10:50 +0000)]
UBUNTU: [Config] RTC_DRV_PCF85363=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RPMSG_VIRTIO=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:09 +0000 (10:50 +0000)]
UBUNTU: [Config] RPMSG_VIRTIO=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RPI_AXIPERF=m
Paolo Pisati [Thu, 8 Mar 2018 10:50:03 +0000 (10:50 +0000)]
UBUNTU: [Config] RPI_AXIPERF=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] ROCKCHIP_PHY=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:58 +0000 (10:49 +0000)]
UBUNTU: [Config] ROCKCHIP_PHY=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RMNET=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:52 +0000 (10:49 +0000)]
UBUNTU: [Config] RMNET=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RFD77402=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:46 +0000 (10:49 +0000)]
UBUNTU: [Config] RFD77402=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] RENESAS_PHY=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:23 +0000 (10:49 +0000)]
UBUNTU: [Config] RENESAS_PHY=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] PINCTRL_RK805=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:18 +0000 (10:49 +0000)]
UBUNTU: [Config] PINCTRL_RK805=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] NFT_FIB_NETDEV=m
Paolo Pisati [Thu, 8 Mar 2018 10:49:00 +0000 (10:49 +0000)]
UBUNTU: [Config] NFT_FIB_NETDEV=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] NET_SCH_CBS=m
Paolo Pisati [Thu, 8 Mar 2018 10:48:55 +0000 (10:48 +0000)]
UBUNTU: [Config] NET_SCH_CBS=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] MTD_SHARPSL_PARTS=m
Paolo Pisati [Thu, 8 Mar 2018 10:48:49 +0000 (10:48 +0000)]
UBUNTU: [Config] MTD_SHARPSL_PARTS=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] MLXSW_CORE=m
Paolo Pisati [Thu, 8 Mar 2018 10:44:58 +0000 (10:44 +0000)]
UBUNTU: [Config] MLXSW_CORE=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] MLXFW=m
Paolo Pisati [Thu, 8 Mar 2018 10:43:22 +0000 (10:43 +0000)]
UBUNTU: [Config] MLXFW=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] MANAGER_SBS=m
Paolo Pisati [Thu, 8 Mar 2018 10:43:16 +0000 (10:43 +0000)]
UBUNTU: [Config] MANAGER_SBS=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] LTC2471=m
Paolo Pisati [Thu, 8 Mar 2018 10:43:11 +0000 (10:43 +0000)]
UBUNTU: [Config] LTC2471=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] LEDS_TRIGGER_ACTIVITY=m
Paolo Pisati [Thu, 8 Mar 2018 10:43:05 +0000 (10:43 +0000)]
UBUNTU: [Config] LEDS_TRIGGER_ACTIVITY=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] LEDS_AS3645A=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:53 +0000 (10:42 +0000)]
UBUNTU: [Config] LEDS_AS3645A=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] IR_PWM_TX=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:48 +0000 (10:42 +0000)]
UBUNTU: [Config] IR_PWM_TX=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] IR_GPIO_TX=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:42 +0000 (10:42 +0000)]
UBUNTU: [Config] IR_GPIO_TX=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] INPUT_RK805_PWRKEY=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:36 +0000 (10:42 +0000)]
UBUNTU: [Config] INPUT_RK805_PWRKEY=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] INPUT_PWM_VIBRA=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:29 +0000 (10:42 +0000)]
UBUNTU: [Config] INPUT_PWM_VIBRA=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] IIO_CROS_EC_ACCEL_LEGACY=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:23 +0000 (10:42 +0000)]
UBUNTU: [Config] IIO_CROS_EC_ACCEL_LEGACY=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] GPIO_MB86S7X=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:06 +0000 (10:42 +0000)]
UBUNTU: [Config] GPIO_MB86S7X=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] GPIO_MAX3191X=m
Paolo Pisati [Thu, 8 Mar 2018 10:42:00 +0000 (10:42 +0000)]
UBUNTU: [Config] GPIO_MAX3191X=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] FPGA_MGR_ALTERA_PS_SPI=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:54 +0000 (10:41 +0000)]
UBUNTU: [Config] FPGA_MGR_ALTERA_PS_SPI=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] EXTCON_USBC_CROS_EC=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:48 +0000 (10:41 +0000)]
UBUNTU: [Config] EXTCON_USBC_CROS_EC=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DS4424=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:43 +0000 (10:41 +0000)]
UBUNTU: [Config] DS4424=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_TVE200=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:31 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_TVE200=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_SII9234=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:25 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_SII9234=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_PANEL_SEIKO_43WVF1G=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:19 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_PANEL_SEIKO_43WVF1G=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_PANEL_SAMSUNG_S6E63J0X03=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:13 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_PANEL_SAMSUNG_S6E63J0X03=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:07 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_PANEL_ORISETECH_OTM8009A=m
Paolo Pisati [Thu, 8 Mar 2018 10:41:01 +0000 (10:41 +0000)]
UBUNTU: [Config] DRM_PANEL_ORISETECH_OTM8009A=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
5 years agoUBUNTU: [Config] DRM_DW_HDMI_CEC=m
Paolo Pisati [Thu, 8 Mar 2018 10:40:53 +0000 (10:40 +0000)]
UBUNTU: [Config] DRM_DW_HDMI_CEC=m

Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>