Re: [PATCH v3 3/3] serial: core: Allow skipping old serial port initialization

2018-03-18 Thread kbuild test robot
/Daniel-Kurtz/Add-earlycon-support-for-AMD-Carrizo-Stoneyridge/20180318-024830 config: ia64-allmodconfig (attached as .config) compiler: ia64-linux-gcc (GCC) 7.2.0 reproduce: wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin

Re: [PATCH] IB/mlx5: Set the default active rate and width to QDR and 4X

2018-03-18 Thread Noa Osherovich
On 3/16/2018 4:59 PM, Hal Rosenstock wrote: > On 3/15/2018 10:37 PM, Honggang LI wrote: >> From: Honggang Li >> >> commit f1b65df5a232 ("IB/mlx5: Add support for active_width and >> active_speed in RoCE"). Before this patch applied, the mlx5_ib >> driver set default active_width and active_speed t

Re: [PATCH v10 2/5] arm64: KVM: export the capability to set guest SError syndrome

2018-03-18 Thread gengdongjiu
Hi James, Thanks for your time to review and give comments. [...] > > + > > +8.14 KVM_CAP_ARM_SET_SERROR_ESR > > + > > +Architectures: arm, arm64 > > + > > +This capability indicates that userspace can specify syndrome value > > +reported to guest OS when guest takes a virtual SError interrupt

[PATCH] coresight: use put_device() instead of kfree()

2018-03-18 Thread Arvind Yadav
Never directly free @dev after calling device_register(), even if it returned an error. Always use put_device() to give up the reference initialized. Signed-off-by: Arvind Yadav --- drivers/hwtracing/coresight/coresight.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [PATCH] drm/amdkfd: fix uninitialized variable use

2018-03-18 Thread Oded Gabbay
On Thu, Mar 15, 2018 at 6:49 PM, Arnd Bergmann wrote: > When CONFIG_ACPI is disabled, we never initialize the acpi_table > structure in kfd_create_crat_image_virtual: > > drivers/gpu/drm/amd/amdkfd/kfd_crat.c: In function > 'kfd_create_crat_image_virtual': > drivers/gpu/drm/amd/amdkfd/kfd_crat.c:

Re: [PATCH v2 1/9] Staging: iio: accel: adis16201: Rename few macro definitions

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:18 +0530 Himanshu Jha wrote: > Rename the macro definitions with suitable names specifying their > purpose. > > * ADIS16201_STARTUP_DELAY_MS: Remove the comment specifying the delay in > microseconds and rename it with addtition of _MS suffix. > > * ADIS16201_MSC_CTR

Re: iio/gyro/bmg160_core: Improve unlocking of a mutex in five functions

2018-03-18 Thread SF Markus Elfring
Am 17.03.2018 um 20:54 schrieb Jonathan Cameron: > On Wed, 14 Mar 2018 16:15:32 +0100 > SF Markus Elfring wrote: > >> From: Markus Elfring >> Date: Wed, 14 Mar 2018 16:06:49 +0100 >> >> * Add jump targets so that a call of the function "mutex_unlock" is stored >> only once in these function

[GIT PULL] KVM fixes for 4.16-rc6

2018-03-18 Thread Paolo Bonzini
Linus, The following changes since commit e2c15aff5f353ba80bd3bb49840837f65fa5cc43: Merge tag 'sound-4.16-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound (2018-03-15 11:07:35 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/kvm.git ta

Re: [PATCH v2 2/9] Staging: iio: accel: adis16201: Remove unnecessary comments

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:19 +0530 Himanshu Jha wrote: > Remove few unnecessary comments since the macro definitions clearly > justify their purpose. > > Signed-off-by: Himanshu Jha Seems like a good balance between enough information and too much noise so applied to the togreg branch of iio.gi

Re: [PATCH v2 3/9] Staging: iio: accel: adis16201: Add _REG suffix to reisters

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:20 +0530 Himanshu Jha wrote: > Add a _REG suffix to distinguish between registers and the register bit > fileds. > > Signed-off-by: Himanshu Jha Other than the typo in the patch title, this looks good (I fixed that up when applying). Applied. Jonathan > --- > v2: >

Re: [PATCH v2 4/9] Staging: iio: accel: adis16201: Group register definitions

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:21 +0530 Himanshu Jha wrote: > Group register definitions with its register field bits to improve > readability and easy identification. A small comment is also added to > denote the purpose/functionality of the grouped register definitions. > > Signed-off-by: Himanshu

Re: [PATCH v2 5/9] Staging: iio: accel: adis16201: Add comments about units in read_raw()

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:22 +0530 Himanshu Jha wrote: > Clarify the conversion and formation of resultant data in the > adis16201_read_raw() with sufficient comments and remove the unnecessary > comments. > > Signed-off-by: Himanshu Jha It is a little illogical to have comments for all but one

Re: [PATCH v2 6/9] Staging: iio: accel: adis16201: Use sign_extend32 function

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:23 +0530 Himanshu Jha wrote: > Use sign_extned32() for 32 bit sign extending rather than hard coding. > > Signed-off-by: Himanshu Jha Great, applied. Thanks, Jonathan > --- > v2: >-no change in this patch. > > drivers/staging/iio/accel/adis16201.c | 5 ++--- >

Re: [PATCH v2 7/9] Staging: iio: accel: adis16201: Prefer reverse christmas tree ordering

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:24 +0530 Himanshu Jha wrote: > Prefer reverse christmas tree ordering of declarations to improve > readability. > > Signed-off-by: Himanshu Jha As ever, this sort of change is only worth doing if you are working on the relevant code anyway. You are, so good to tidy up

Re: [PATCH v2 8/9] Staging: iio: accel: adis16201: Adjust argument to match open parentheses

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:25 +0530 Himanshu Jha wrote: > In adis16201_read_raw() adjust an argument to match an open parentheses > using tabs and spaces. > > Signed-off-by: Himanshu Jha Applied, thanks Jonathan > --- > v2: >-aligned perfectly to match open parentheses. > > drivers/stagi

Re: [PATCH v2 9/9] Staging: iio: accel: adis16201: Move adis16201 driver out of staging

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 01:36:26 +0530 Himanshu Jha wrote: > Move the adis16201 driver out of staging directory and merge to the > mainline IIO subsystem. > > Signed-off-by: Himanshu Jha Hi Himanshu, You have made great progress on this, but this final posting of a patch moving a driver out of sta

Re: [PATCH 1/3] x86, pkeys: do not special case protection key 0

2018-03-18 Thread Thomas Gleixner
On Sat, 17 Mar 2018, Ram Pai wrote: > On Fri, Mar 16, 2018 at 02:46:56PM -0700, Dave Hansen wrote: > > > > From: Dave Hansen > > > > mm_pkey_is_allocated() treats pkey 0 as unallocated. That is > > inconsistent with the manpages, and also inconsistent with > > mm->context.pkey_allocation_map.

Re: [PATCH v2 1/8] staging:iio:ade7854: Fix error handling on read/write

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:48:33 -0300 Rodrigo Siqueira wrote: > The original code does not correctly handle the error related to I2C > read and write. This patch fixes the error handling related to all > read/write functions for I2C. This patch is an adaptation of the John > Syne patches. > > Signe

Re: [PATCH v2 2/8] staging:iio:ade7854: Fix the wrong number of bits to read

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:48:51 -0300 Rodrigo Siqueira wrote: > The function ade7854_i2c_read_reg_32() have to invoke the > i2c_master_recv() for read 32 bits values, however, the counter is set > to 3 which means 24 bits. This patch fixes the wrong size of 24 bits, to > 32 bits. Finally, this patch

Re: [PATCH v2] Staging: iio: adis16209: Move adis16209 driver out of staging

2018-03-18 Thread Shreeya Patel
On 10 March 2018 21:27:31 GMT+05:30, Jonathan Cameron Hi Jonathan >On Sat, 10 Mar 2018 15:50:23 +0530 >Shreeya Patel wrote: > >> Move the adis16209 driver out of staging directory and merge to the >> mainline IIO subsystem. >> >> Signed-off-by: Shreeya Patel >As this has a clear dependency

Re: [PATCH v2 3/8] staging:iio:ade7854: Rework I2C write function

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:49:08 -0300 Rodrigo Siqueira wrote: > The write operation using I2C has many code duplications and four > different interfaces per data size. This patch introduces a single > function that centralizes the main tasks. > > The central function inserted by this patch can easi

Re: [PATCH v2 4/8] staging:iio:ade7854: Rework SPI write function

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:49:24 -0300 Rodrigo Siqueira wrote: > The write operation using SPI has a many code duplications (similar to > I2C) and four different interfaces per data size. This patch introduces > a single function that centralizes the main task related to SPI. > > Signed-off-by: Rodr

Re: [PATCH v2 5/8] staging:iio:ade7854: Replace many functions for one function

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:49:40 -0300 Rodrigo Siqueira wrote: > This patch removes code duplications related to the write_reg_* > functions and centralizes them in a single function. Also, it eliminates > the legacy functions and replaces them by a unique signature that is > used by SPI and I2C. >

Re: [PATCH v2 6/8] staging:iio:ade7854: Rework I2C read function

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:49:59 -0300 Rodrigo Siqueira wrote: > The read operation for the I2C function has many duplications that can > be generalized into a single function. This patch reworks the read > operation for I2C to centralizes all similar code in a single function. > Part of the rework i

Re: [PATCH] iio/gyro/bmg160_core: Improve unlocking of a mutex in five functions

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 07:54:22PM +, Jonathan Cameron wrote: > On Wed, 14 Mar 2018 16:15:32 +0100 > SF Markus Elfring wrote: > > > From: Markus Elfring > > Date: Wed, 14 Mar 2018 16:06:49 +0100 > > > > * Add jump targets so that a call of the function "mutex_unlock" is stored > > only on

Re: [PATCH v2 8/8] staging:iio:ade7854: Remove read_reg_* duplications

2018-03-18 Thread Jonathan Cameron
On Fri, 16 Mar 2018 19:50:29 -0300 Rodrigo Siqueira wrote: > The original code had a read function per data size; after updates, all > read functions tasks were centralized in a single function, but the old > signature was kept to maintain the module working without problems. This > patch removes

Re: [PATCH v2] Staging: iio: adis16209: Move adis16209 driver out of staging

2018-03-18 Thread Jonathan Cameron
On Sun, 18 Mar 2018 15:18:44 +0530 Shreeya Patel wrote: > On 10 March 2018 21:27:31 GMT+05:30, Jonathan Cameron > > Hi Jonathan > > >On Sat, 10 Mar 2018 15:50:23 +0530 > >Shreeya Patel wrote: > > > >> Move the adis16209 driver out of staging directory and merge to the > >> mainline IIO subs

Re: [PATCH 4.4 29/63] watchdog: hpwdt: fix unused variable warning

2018-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 16, 2018 at 04:55:37PM -0600, Jerry Hoemann wrote: > > Greg, > > Sorry, if I'm missing something, but I see 3 patches for > hpwdt queued up for 4.4: > > queue-4.4/watchdog-hpwdt-fix-unused-variable-warning.patch > queue-4.4/watchdog-hpwdt-smbios-check.patch > queue-

Re: [PATCH 3.18 00/25] 3.18.100-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 16, 2018 at 07:21:53PM +, Harsh Shandilya wrote: > On Fri, 16 Mar, 2018, 8:53 PM Greg Kroah-Hartman, < > gre...@linuxfoundation.org> wrote: > > > This is the start of the stable review cycle for the 3.18.100 release. > > There are 25 patches in this series, all will be posted as a

Re: iio/gyro/bmg160_core: Improve unlocking of a mutex in five functions

2018-03-18 Thread Jonathan Cameron
On Sun, 18 Mar 2018 09:19:47 +0100 SF Markus Elfring wrote: > Am 17.03.2018 um 20:54 schrieb Jonathan Cameron: > > On Wed, 14 Mar 2018 16:15:32 +0100 > > SF Markus Elfring wrote: > > > >> From: Markus Elfring > >> Date: Wed, 14 Mar 2018 16:06:49 +0100 > >> > >> * Add jump targets so that a c

Re: [PATCH 4.4 00/63] 4.4.122-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 16, 2018 at 11:05:31AM -0700, Nathan Chancellor wrote: > On Fri, Mar 16, 2018 at 04:22:32PM +0100, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.4.122 release. > > There are 63 patches in this series, all will be posted as a response > > to this on

Re: [PATCH] iio/adc/ad7291: Improve unlocking of a mutex in ad7291_read_raw()

2018-03-18 Thread Jonathan Cameron
On Tue, 13 Mar 2018 20:16:27 +0100 SF Markus Elfring wrote: > From: Markus Elfring > Date: Tue, 13 Mar 2018 20:08:40 +0100 > > * Add a jump target so that a call of the function "mutex_unlock" is stored > only once in this function implementation. > > * Replace three calls by goto statements

Re: [PATCH] iio/adc/nau7802: Improve unlocking of a mutex in nau7802_read_raw()

2018-03-18 Thread Jonathan Cameron
On Tue, 13 Mar 2018 20:56:25 +0100 SF Markus Elfring wrote: > From: Markus Elfring > Date: Tue, 13 Mar 2018 20:52:26 +0100 > > * Add a jump target so that a call of the function "mutex_unlock" is stored > only once in this function implementation. > > * Replace two calls by goto statements.

Re: [PATCH 4.14 064/109] dmaengine: bcm2835-dma: Use vchan_terminate_vdesc() instead of desc_free

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 08:02:57PM +0530, Vinod Koul wrote: > On Fri, Mar 16, 2018 at 01:46:40PM -0500, Dan Rue wrote: > > On Fri, Mar 16, 2018 at 04:23:33PM +0100, Greg Kroah-Hartman wrote: > > > 4.14-stable review patch. If anyone has any objections, please let me > > > know. > > > > > > -

Re: [PATCH 4.14 000/109] 4.14.28-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 16, 2018 at 04:22:29PM +0100, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.14.28 release. > There are 109 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me kno

Re: [PATCH 4.15 000/128] 4.15.11-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Fri, Mar 16, 2018 at 04:22:21PM +0100, Greg Kroah-Hartman wrote: > This is the start of the stable review cycle for the 4.15.11 release. > There are 128 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me kno

Re: [PATCH 4.14 000/109] 4.14.28-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 07:46:20AM -0700, Guenter Roeck wrote: > On 03/16/2018 08:22 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.14.28 release. > > There are 109 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH 4.15 000/128] 4.15.11-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 01:06:21AM +0530, Naresh Kamboju wrote: > > Peter Ujfalusi > > dmaengine: bcm2835-dma: Use vchan_terminate_vdesc() instead of desc_free > > arm and arm64 build broken due to this patch for 4.15 and 4.14 > > drivers/dma/bcm2835-dma.c:815:3: error: implicit declaration

Re: [PATCH 4.14 000/109] 4.14.28-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 01:10:28AM +0530, Naresh Kamboju wrote: > On 16 March 2018 at 20:52, Greg Kroah-Hartman > wrote: > > Peter Ujfalusi > > dmaengine: bcm2835-dma: Use vchan_terminate_vdesc() instead of desc_free > > arm and arm64 build broken due to this patch for 4.14 and 4.15 > > dri

Re: [PATCH 4.15 000/128] 4.15.11-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 07:48:59AM -0700, Guenter Roeck wrote: > On 03/16/2018 08:22 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.15.11 release. > > There are 128 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH 4.9 00/86] 4.9.88-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 07:41:51AM -0700, Guenter Roeck wrote: > On 03/16/2018 08:22 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.9.88 release. > > There are 86 patches in this series, all will be posted as a response > > to this one. If anyone has any i

Re: [PATCH 4.9 00/86] 4.9.88-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 03:48:24PM +0530, Naresh Kamboju wrote: > On 16 March 2018 at 20:52, Greg Kroah-Hartman > wrote: > > This is the start of the stable review cycle for the 4.9.88 release. > > There are 86 patches in this series, all will be posted as a response > > to this one. If anyone ha

Re: [PATCH 4.4 00/63] 4.4.122-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sat, Mar 17, 2018 at 03:51:14PM +0530, Naresh Kamboju wrote: > On 17 March 2018 at 15:41, Naresh Kamboju wrote: > > On 16 March 2018 at 20:52, Greg Kroah-Hartman > > wrote: > >> This is the start of the stable review cycle for the 4.4.122 release. > >> There are 63 patches in this series, all

linux-next on x60: network manager often complains "network is disabled" after resume

2018-03-18 Thread Pavel Machek
Hi! With recent linux-next, after resume networkmanager often claims that "network is disabled". Sometimes suspend/resume clears that. Any ideas? Does it work for you? Pavel -- (english) http://www.livejournal.com/~pavelmach

[GIT pull] EFI fix for 4.16

2018-03-18 Thread Thomas Gleixner
Linus, please pull the latest efi-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git efi-urgent-for-linus A single fix to prevent partially initialized pointers in mixed mode (64bit kernel on 32bit UEFI). Thanks, tglx --> Ard

Re: [PATCH 4.14 064/109] dmaengine: bcm2835-dma: Use vchan_terminate_vdesc() instead of desc_free

2018-03-18 Thread Greg Kroah-Hartman
On Sun, Mar 18, 2018 at 11:24:17AM +0100, Greg Kroah-Hartman wrote: > On Sat, Mar 17, 2018 at 08:02:57PM +0530, Vinod Koul wrote: > > On Fri, Mar 16, 2018 at 01:46:40PM -0500, Dan Rue wrote: > > > On Fri, Mar 16, 2018 at 04:23:33PM +0100, Greg Kroah-Hartman wrote: > > > > 4.14-stable review patch.

[GIT pull] irq fixes for 4.16

2018-03-18 Thread Thomas Gleixner
Linus, please pull the latest irq-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq-urgent-for-linus Three fixes for irq chip drivers: - Make sure the allocations in the GIC-V3 ITS driver are large enough to accomodate the interrupt space

Good day friend!!!

2018-03-18 Thread Wesley
Am Wes from United States but currently in Syria for peace keeping mission. I am currently looking for friendship that will lead to relationship in which I feel loved again. I want to get to know you better, if I may be so bold. I consider myself an easy-going man.. Please for

[GIT pull] x86 fix for 4.16

2018-03-18 Thread Thomas Gleixner
Linus, please pull the latest x86-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-urgent-for-linus A single fix for vmalloc_fault() which uses p*d_huge() unconditionally whether CONFIG_HUGETLBFS is set or not. In case of CONFIG_HUGETLBFS=n this r

Re: [RFC 2/4] sh: ecovec24: conditionally register backlight device

2018-03-18 Thread jacopo mondi
Hi Andrian, On Sat, Mar 17, 2018 at 07:21:17PM +0900, John Paul Adrian Glaubitz wrote: > > > > On Mar 17, 2018, at 6:25 PM, jacopo mondi wrote: > > > > Hi Dmitry, > > > >> On Fri, Mar 16, 2018 at 04:38:00PM -0700, Dmitry Torokhov wrote: > >> Hi Jacopo, > >> > >>> On Fri, Mar 16, 2018 at 11:07:48A

Re: [RFT][PATCH v5 0/7] sched/cpuidle: Idle loop rework

2018-03-18 Thread Rafael J. Wysocki
On Saturday, March 17, 2018 5:11:53 PM CET Doug Smythies wrote: > On 2018.03.17 Thomas Ilsche wrote: > > > Over the last week I tested v4+pollv2 and now v5+pollv3. With v5, I > > observe a particular idle behavior, that I have not seen before with > > v4. On a dual-socket Skylake system the idle p

[PATCH] Staging: xgifb: XGI_main_26.c: Fixed multi-line dereference warning

2018-03-18 Thread Pratik Jain
Fixed coding style issues detected by checkpatch.pl Signed-off-by: Pratik Jain --- drivers/staging/xgifb/XGI_main_26.c | 23 +-- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/drivers/staging/xgifb/XGI_main_26.c b/drivers/staging/xgifb/XGI_main_26.c index 101

Re: Unknown symbols in module (iio)

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 13:42:24 -0700 Randy Dunlap wrote: > [adding linux-iio mailing list] > > Hi, > > It's always a good idea to include the kernel version in a problem report. > > > On 03/05/2018 03:17 AM, Srishti Sharma wrote: > > Hello, > > I was trying to work with the iio dummy driver, an

[GIT pull] x86/pti updates for 4.16

2018-03-18 Thread Thomas Gleixner
Linus, please pull the latest x86-pti-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-pti-for-linus Another set of melted spectrum updates: - Iron out the last late microcode loading issues by actually checking whether new microcode is present and

[PATCH] Staging: xgifb: XGI_main_26.c: Fixed over 80 column characters

2018-03-18 Thread Pratik Jain
Fixed coding style issues detected by checkpatch.pl Signed-off-by: Pratik Jain --- drivers/staging/xgifb/XGI_main_26.c | 23 +-- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/drivers/staging/xgifb/XGI_main_26.c b/drivers/staging/xgifb/XGI_main_26.c index 101

Re: [PATCH] Staging: xgifb: XGI_main_26.c: Fixed multi-line dereference warning

2018-03-18 Thread Pratik Jain
IGNORE THIS THREAD

Re: [RFC 2/4] sh: ecovec24: conditionally register backlight device

2018-03-18 Thread John Paul Adrian Glaubitz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hi Jacopo! On 03/18/2018 07:54 PM, jacopo mondi wrote: > Sorry if I was not clear here, it is not anyone's intention to remove any > support for any SH board. The media subsystem is working to replace some > components (the legacy camera drivers) a

Re: [PATCH 4.14 000/109] 4.14.28-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sun, Mar 18, 2018 at 11:24:54AM +0100, Greg Kroah-Hartman wrote: > On Fri, Mar 16, 2018 at 04:22:29PM +0100, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.14.28 release. > > There are 109 patches in this series, all will be posted as a response > > to this

Re: [PATCH 4.15 000/128] 4.15.11-stable review

2018-03-18 Thread Greg Kroah-Hartman
On Sun, Mar 18, 2018 at 11:25:26AM +0100, Greg Kroah-Hartman wrote: > On Fri, Mar 16, 2018 at 04:22:21PM +0100, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.15.11 release. > > There are 128 patches in this series, all will be posted as a response > > to this

Linux 3.18.100

2018-03-18 Thread Greg KH
I'm announcing the release of the 3.18.100 kernel. All users of the 3.18 kernel series must upgrade. The updated 3.18.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.18.y and can be browsed at the normal kernel.org git web browser

Re: Linux 3.18.100

2018-03-18 Thread Greg KH
diff --git a/Makefile b/Makefile index a94a5e5d84ca..6544b6ed9d46 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 18 -SUBLEVEL = 99 +SUBLEVEL = 100 EXTRAVERSION = NAME = Diseased Newt diff --git a/arch/mips/kernel/smp-bmips.c b/arch/mips/kernel/smp-bmips.c index

Linux 4.4.122

2018-03-18 Thread Greg KH
I'm announcing the release of the 4.4.122 kernel. All users of the 4.4 kernel series must upgrade. The updated 4.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.4.y and can be browsed at the normal kernel.org git web browser:

Linux 4.9.88

2018-03-18 Thread Greg KH
I'm announcing the release of the 4.9.88 kernel. All users of the 4.9 kernel series must upgrade. The updated 4.9.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.9.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 4.4.122

2018-03-18 Thread Greg KH
diff --git a/Makefile b/Makefile index 0e22e4eb85cc..3eb21d269b42 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 4 -SUBLEVEL = 121 +SUBLEVEL = 122 EXTRAVERSION = NAME = Blurry Fish Butt diff --git a/arch/arm/boot/dts/logicpd-torpedo-som.dtsi b/arch/arm/boot/dts

Re: Linux 4.9.88

2018-03-18 Thread Greg KH
diff --git a/Makefile b/Makefile index 3043937a65d1..1512ebceffda 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 9 -SUBLEVEL = 87 +SUBLEVEL = 88 EXTRAVERSION = NAME = Roaring Lionus diff --git a/arch/arm/mach-omap2/omap-secure.c b/arch/arm/mach-omap2/omap-secur

Re: Unknown symbols in module (iio)

2018-03-18 Thread Srishti Sharma
On Sun, Mar 18, 2018 at 4:34 PM, Jonathan Cameron wrote: > On Sat, 17 Mar 2018 13:42:24 -0700 > Randy Dunlap wrote: > >> [adding linux-iio mailing list] >> >> Hi, >> >> It's always a good idea to include the kernel version in a problem report. >> >> >> On 03/05/2018 03:17 AM, Srishti Sharma wrote

Re: [PATCH v2] Revert "mm/page_alloc: fix memmap_init_zone pageblock alignment"

2018-03-18 Thread Neil Armstrong
On 14/03/2018 23:53, Shanker Donthineni wrote: > > Hi Ard, > > On 03/14/2018 05:25 PM, Jan Glauber wrote: >> On Wed, Mar 14, 2018 at 07:29:37PM +, Ard Biesheuvel wrote: >>> This reverts commit 864b75f9d6b0100bb24fdd9a20d156e7cda9b5ae. >> >> FWIW, the revert fixes the boot hang I'm seeing on T

meter ABI: (was Re: [PATCH v2 1/3] staging:iio:meter: Replaces IIO_DEV_ATTR_CH_OFF by IIO_DEVICE_ATTR)

2018-03-18 Thread Jonathan Cameron
On Sat, 17 Mar 2018 23:11:45 -0700 John Syne wrote: > Hi Jonathan, Hi John and All, I'd love to get some additional input on this from anyone interested. There are a lot of weird and wonderful derived quantities in an energy meter and it seems we need to make some fundamental changes to support

Re: [PATCH 1/3] of: Documentation: Fix forgotten reference to of_overlay_apply()

2018-03-18 Thread Rob Herring
On Fri, Mar 09, 2018 at 11:44:46AM +0100, Geert Uytterhoeven wrote: > Fixes: 93a6039000b5acab ("of: Documentation: of_overlay_apply() replaced by > of_overlay_fdt_apply()") > Signed-off-by: Geert Uytterhoeven > --- > Documentation/devicetree/overlay-notes.txt | 4 ++-- > 1 file changed, 2 insert

Re: [PATCH 6/9] sunxi-cedrus: Add device tree binding document

2018-03-18 Thread Rob Herring
On Fri, Mar 09, 2018 at 11:14:42AM +0100, Paul Kocialkowski wrote: > From: Florent Revest "device tree binding document" can all be summarized with the subject prefix "dt-bindings: media: ". Also, email should be updated to @bootlin.com? > > Device Tree bindings for the Allwinner's video engi

Re: [PATCH RESEND 2/2] clk: stm32: Add DSI clock for STM32F469 Board

2018-03-18 Thread Rob Herring
On Fri, Mar 09, 2018 at 07:57:31AM +0100, gabriel.fernan...@st.com wrote: > From: Gabriel Fernandez > > This patch adds DSI clock for STM32F469 board > > Signed-off-by: Gabriel Fernandez > --- > drivers/clk/clk-stm32f4.c | 11 ++- > include/dt-bindings/clock/stm32fx-clo

Re: [PATCH v2 3/3] dt-bindings: phy-mtk-tphy: add properties for U2 slew rate calibrate

2018-03-18 Thread Rob Herring
On Mon, Mar 12, 2018 at 01:25:40PM +0800, Chunfeng Yun wrote: > Add two properties of ref_clk and coefficient used by U2 slew rate > calibrate which may vary on different SoCs > > Signed-off-by: Chunfeng Yun > --- > Documentation/devicetree/bindings/phy/phy-mtk-tphy.txt | 4 > 1 file change

Re: [PATCH] drivers: gpio: pca953x: add compatibility for pcal6524 and pcal9555a

2018-03-18 Thread Rob Herring
On Sat, Mar 10, 2018 at 12:00:01PM +0100, H. Nikolaus Schaller wrote: > The Pyra-Handheld originally used the tca6424 but recently we have > replaced it by the pin and package compatible pcal6524. So let's > add this to the bindings and the driver. > > And while we are at it, the pcal9555a does no

Re: [PATCH v2 1/2] dt-bindings: mailbox: add STMicroelectronics STM32 IPCC binding

2018-03-18 Thread Rob Herring
On Mon, Mar 12, 2018 at 11:58:26AM +0100, Fabien Dessenne wrote: > Add a binding for the STMicroelectronics STM32 IPCC block exposing a > mailbox mechanism between two processors. > > Signed-off-by: Fabien Dessenne > Signed-off-by: Ludovic Barre > --- > .../devicetree/bindings/mailbox/stm32-ipc

Re: [PATCH v2 3/5] dt-bindings: clock: add clocks for MT2712

2018-03-18 Thread Rob Herring
On Mon, Mar 12, 2018 at 03:03:40PM +0800, Weiyi Lu wrote: > add new clocks according to ECO design change > > Signed-off-by: Weiyi Lu > --- > include/dt-bindings/clock/mt2712-clk.h | 12 ++-- > 1 file changed, 10 insertions(+), 2 deletions(-) Reviewed-by: Rob Herring

Re: [PATCH] of: unittest: move misplaced function declaration

2018-03-18 Thread Rob Herring
On Tue, Mar 13, 2018 at 02:15:42PM +0100, Arnd Bergmann wrote: > The overlay_data_apply() declaration is outside of the #ifdef that contains > both the user and the definition, causing a compile-time warning in > some configurations: > > drivers/of/unittest.c:48:19: error: 'overlay_data_apply' dec

Re: [PATCH v3 1/7] dt-bindings: reset: Add AOSS reset bindings for SDM845 SoCs

2018-03-18 Thread Rob Herring
On Wed, Mar 14, 2018 at 02:51:17PM +0530, Sibi S wrote: > Add SDM845 AOSS (always on subsystem) reset controller binding > > Signed-off-by: Sibi S Still need a full name. Otherwise, looks fine. > --- > .../devicetree/bindings/reset/qcom,aoss-reset.txt | 54 > ++ > includ

Re: [PATCH v2 1/4] dt-bindings: mfd: bd9571mwv: Document DDR Backup Mode properties

2018-03-18 Thread Rob Herring
On Wed, Mar 14, 2018 at 12:08:39PM +0100, Geert Uytterhoeven wrote: > Document the new optional properties related to DDR Backup Mode and > toggle/momentary power switches. > > Signed-off-by: Geert Uytterhoeven > --- > v2: > - Improve property description, > - Add properties for power switch

Re: [PATCH v4 2/3] dt-bindings: net: bluetooth: Add qualcomm-bluetooth

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 02:46:45PM +0100, Sebastian Reichel wrote: > Hi Thierry, > > On Thu, Mar 15, 2018 at 12:07:44PM +0100, Thierry Escande wrote: > > > > BT_DISABLE_N is the name of this pin in the datasheet of the QCA chip, > > > > not on the board, so this name is the same regardless of what

Re: [PATCH v2 1/2] dt-bindings: reset: add STM32MP1 resets

2018-03-18 Thread Rob Herring
On Wed, Mar 14, 2018 at 05:30:00PM +0100, gabriel.fernan...@st.com wrote: > From: Gabriel Fernandez > > This patch adds the reset binding entry for STM32MP1 > > Signed-off-by: Gabriel Fernandez > --- > .../devicetree/bindings/reset/st,stm32mp1-rcc.txt | 6 ++ > include/dt-bindings/reset/stm

Re: [PATCH v1 1/2] dt-bindings: usb: Update documentation for Qualcomm DWC3 driver

2018-03-18 Thread Rob Herring
On Tue, Mar 13, 2018 at 04:06:00PM +0530, Manu Gautam wrote: > Existing documentation has lot of incorrect information as it > was originally added for a driver that no longer exists. > > Signed-off-by: Manu Gautam > --- > .../devicetree/bindings/usb/qcom,dwc3.txt | 87 > ++

Re: [PATCH v1 1/8] dt-bindings: stm32-dma: introduce DMA features bitfield

2018-03-18 Thread Rob Herring
On Tue, Mar 13, 2018 at 05:42:00PM +0100, Pierre-Yves MORDRET wrote: > This bitfield intends to address features to be activated within the > driver. Initially the mask was only meant for FIFO Threshold management. > Backward compatibility is preserved but the meaning of this field has been > exten

Re: [PATCH] ARM: dts: sun8i-h3: Add Mali node

2018-03-18 Thread Rob Herring
On Tue, Mar 13, 2018 at 11:16:45AM +0100, Giulio Benetti wrote: > The H3 has an ARM Mali 400 GPU, so add binding to our DT. > > Signed-off-by: Giulio Benetti > --- > .../devicetree/bindings/gpu/arm,mali-utgard.txt| 1 + > arch/arm/boot/dts/sun8i-h3.dtsi| 27 > ++

Re: [PATCH v2 2/2] iio: chemical: sgp30: Support Sensirion SGPxx sensors

2018-03-18 Thread Rob Herring
On Sat, Mar 10, 2018 at 11:07:30PM +0100, Andreas Brauchli wrote: > Support Sensirion SGP30 and SGPC3 multi-pixel I2C gas sensors > > Supported Features: > > * Indoor Air Quality (IAQ) concentrations for > - tVOC (in_concentration_voc_input) > - CO2eq (in_concentration_co2_input) - SGP30 only

Re: [PATCH] of: Respect CONFIG_CMDLINE{,_EXTENED,_FORCE) with no chosen node

2018-03-18 Thread Rob Herring
On Wed, Mar 14, 2018 at 09:31:05AM -0700, Palmer Dabbelt wrote: > Systems that boot without a chosen node in the device tree should still > respect the command lines that are built into the kernel. This patch > avoids bailing out of the command line argument parsing code when there > is no chosen

Re: [PATCH v6 11/25] of: base: Add of_get_cpu_state_node() to get idle states for a CPU node

2018-03-18 Thread Rob Herring
On Wed, Mar 14, 2018 at 05:58:21PM +0100, Ulf Hansson wrote: > The CPU's idle state nodes are currently parsed at the common cpuidle DT > library, but also when initializing back-end data for the arch specific CPU > operations, as in the PSCI driver case. > > To avoid open-coding, let's introduce

Re: [PATCH 1/4] dt-bindings: clock: meson: update documentation with hhi syscon

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 12:55:42PM +0100, Jerome Brunet wrote: > The HHI register region hosts more than just clocks and needs to > accessed drivers other than the clock controller, such as the display > driver. > > This register region should be managed by syscon. It is already the case > on gxbb

Re: [PATCH 1/8] drm/sun4i: Add compatible strings for A80 TCONs

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 07:41:29PM +0800, Chen-Yu Tsai wrote: > The A80 has 2 or 3 TCONs. The documentation and vendor kernel are very > vague about the third TCON, to the point that it might not exist. > > In the documentation, the first TCON is missing channel 1, and the > second is missing chan

Re: [PATCH] pcie: qcom: Add support to enable pcie refclk

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 02:41:33PM +, srinivas.kandaga...@linaro.org wrote: > From: Srinivas Kandagatla > > This patch adds support to enable 100MHz pcie refclk, > On some boards like DB600c this clock is not enabled by default. > > Signed-off-by: Srinivas Kandagatla > --- > Documentation/

Re: [PATCH v5 4/9] dt-bindings: gpio: Add gpio nodes for Actions S900 SoC

2018-03-18 Thread Rob Herring
On Fri, Mar 09, 2018 at 10:43:40AM +0530, Manivannan Sadhasivam wrote: > Add gpio nodes for Actions Semi S900 SoC. > > Signed-off-by: Manivannan Sadhasivam > --- > .../devicetree/bindings/gpio/actions,owl-gpio.txt | 90 > ++ > 1 file changed, 90 insertions(+) > create mode

Re: [PATCHv2 4/5] arm64: dts: allwinner: a64: Add pwm device

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 04:25:09PM +, Harald Geyer wrote: > This device is compatible with A13, so no new driver is needed. > A new compatible string is reserved in the binding documentation, to be > used together with the proper fall back. Tested on Teres-I. > > Signed-off-by: Harald Geyer >

Re: [PATCH 1/2] dt-bindings: analogix-dp: Add backlight-pwm-passthru

2018-03-18 Thread Rob Herring
On Fri, Mar 16, 2018 at 02:56:09PM +0530, Archit Taneja wrote: > > > On Friday 16 March 2018 08:26 AM, Alexandru M Stan wrote: > > Documentation for the optional backlight-pwm-passthru property. > > Tells the EDP panel to folow the input pwm frequency instead > > s/folow/follow > > It would be

Re: [PATCH v4 6/9] dt-bindings: add device tree binding for Allwinner H6 main CCU

2018-03-18 Thread Rob Herring
On Fri, Mar 16, 2018 at 10:02:12PM +0800, Icenowy Zheng wrote: > The Allwinner H6 main CCU uses the internal oscillator of the SoC, which > is different with old SoCs' main CCU. > > Add device tree binding for the Allwinner H6 main CCU. > > Signed-off-by: Icenowy Zheng > --- > Extracted in v4. >

Re: [PATCH 3/6] dt-bindings: phy-qcom-qmp: Update bindings for sdm845

2018-03-18 Thread Rob Herring
On Fri, Mar 16, 2018 at 03:14:56PM +0530, Manu Gautam wrote: > Update compatible strings for USB3 PHYs on SDM845. > One is QMPv3 DisplayPort-USB combo PHY and other one > is USB UNI PHY which is single lane USB3 PHY without > DP capability. > > Signed-off-by: Manu Gautam > --- > Documentation/de

Re: [PATCH 2/7] soc: qcom: rpmpd: Add a powerdomain driver to model corners

2018-03-18 Thread Rob Herring
On Fri, Mar 16, 2018 at 09:38:19AM +0530, Rajendra Nayak wrote: > The powerdomains for corners just pass the performance state set by the > consumers to the RPM (Remote Power manager) which then takes care > of setting the appropriate voltage on the corresponding rails to > meet the performance nee

Re: [PATCH 5/6] dt-bindings: phy-qcom-usb2: Update bindings for sdm845

2018-03-18 Thread Rob Herring
On Fri, Mar 16, 2018 at 03:14:58PM +0530, Manu Gautam wrote: > Update compatible strings for USB2 PHYs on sdm845. > There are two QUSB2 PHYs present on sdm845. Few PHY registers > programming is different for these PHYs related to electrical > parameters, otherwise both are same. Register location

Re: [PATCH 1/2] ARM: dts: pfuze3000: update sw1a/vldo4 voltage range

2018-03-18 Thread Fabio Estevam
On Sat, Mar 17, 2018 at 11:23 PM, Anson Huang wrote: > I thought the max value here means the capability of regulator itself, like > the internal No it is not. Please check Documentation/devicetree/bindings/regulator/regulator.txt: "- regulator-max-microvolt: largest voltage consumers may set

Re: [PATCH 1/3] dt-bindings: Add vendor prefix for Bticino

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 10:37:08PM +0530, Jagan Teki wrote: > Added 'bticino' vendor prefix for Bticino International. > > Signed-off-by: Jagan Teki > Signed-off-by: Simone CIANNI > Signed-off-by: Raffaele RECALCATI > --- > Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + > 1 file

Re: [PATCHv2 2/5] arm64: dts: allwinner: a64: Add watchdog

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 04:25:07PM +, Harald Geyer wrote: > Add a watchdog node for the A64, automatically enabled on all boards. > Since the device is compatible with an existing driver, we only reserve > a new compatible string to be used together with the fall back. > Tested on Olimex Teres-

Re: [PATCH v3 2/2] ASoC: Add bindings for PCM1789

2018-03-18 Thread Rob Herring
On Thu, Mar 15, 2018 at 05:18:25PM +0100, Mylène Josserand wrote: > Add a device-tree binding for Texas Instrument's PCM1789 codec. > For the moment, only I2C bus is supported but SPI could be added > in future. > > Signed-off-by: Mylène Josserand > --- > .../devicetree/bindings/sound/pcm1789.tx

  1   2   3   4   5   >