[PATCH v2] Staging: gasket: fix typo in gasket_page_table.c comments.

2020-04-24 Thread Kyoungho Koo
I have found double typed comments "the the". So i modified it to one "the". Signed-off-by: Kyoungho Koo --- drivers/staging/gasket/gasket_page_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/gasket/gasket_page_table.c

[driver-core:driver-core-linus] BUILD SUCCESS 2b07021a940ce1cdec736ec0cacad6af77717afc

2020-04-24 Thread kbuild test robot
randconfig-a001-20200421 mips randconfig-a001-20200421 m68k randconfig-a001-20200421 riscvrandconfig-a001-20200421 nds32randconfig-a001-20200421 parisc randconfig-a001-20200424 alpharandconfig-a001-20200424 m68k

REPLY ASAP

2020-04-24 Thread ZDZ LCC
Is like you didn't receive my last email? I am contacting you again to know if you are the original owner of this email address. Contact me asap as i have important information to discuss with you regarding my present predicament. Your response will be appreciated to enable us discuss in

[PATCH] staging: media: soc_camera: Enclose macro with parentheses

2020-04-24 Thread Guilherme Ricioli
Fix checkpatch error "ERROR: Macros with complex values should be enclosed in parentheses" in soc_camera.c:241. Signed-off-by: Guilherme Ricioli --- drivers/staging/media/soc_camera/soc_camera.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

CURSOS BONIFICABLES DESDE CASA (Empleados activos y en ERTE)

2020-04-24 Thread info
Buenos días Se encuentra abierto el plazo de inscripción de Cursos Bonificables para empleados en activo y en situación de ERTE. Todos los cursos son totalmente Bonificables con cargo al Crédito de Formación 2020 que dispone las empresa. Se realizan desde casa en modalidad individual

Re: [PATCH] staging: gasket: fix typo in gasket_page_table.c comments.

2020-04-24 Thread Dan Carpenter
On Sat, Apr 25, 2020 at 01:26:10AM +0900, kyoungho koo wrote: > I have found double typed comments "the the". So i modified it to > one "the". > > Signed-off-by: kyoungho koo This should be your formal legal name like you would use to sign documents. I suspect it

[PATCH] Staging: rtl8723bs: Fix comment typo "the the".

2020-04-24 Thread kyoungho koo
I have found double typed comments "the the". So i modified it to one "the" Signed-off-by: kyoungho koo --- drivers/staging/rtl8723bs/core/rtw_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_cmd.c

[PATCH] staging: gasket: fix typo in gasket_page_table.c comments.

2020-04-24 Thread kyoungho koo
I have found double typed comments "the the". So i modified it to one "the". Signed-off-by: kyoungho koo --- drivers/staging/gasket/gasket_page_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/gasket/gasket_page_table.c

Re: Funds to Investment..?

2020-04-24 Thread Reem al-Hashimi
My name is Reem E. Al-Hashimi, the Emirates Minister of State and Managing Director of United Arab Emirates (Dubai) World Expo 2020 Committee. I am writing you to stand as my partner to receive my share of gratification from foreign companies whom I helped during the bidding exercise towards

[PATCH v2] most: core: use function subsys_initcall()

2020-04-24 Thread Christian Gromm
This patch replaces function module_init() with subsys_initcall(). It is needed to ensure that the core module of the driver is initialized before a component tries to register with the core. This leads to a NULL pointer dereference if the driver is configured as in-tree. Signed-off-by: Christian

Re: [PATCH] most: core: use function subsys_initcall()

2020-04-24 Thread Greg KH
On Fri, Apr 24, 2020 at 04:12:15PM +0200, Christian Gromm wrote: > This patch replaces function module_init() with subsys_initcall(). > It is needed to ensure that the core module of the driver is > initialized before a component tries to register with the core. This > leads to a NULL pointer

[PATCH] most: core: use function subsys_initcall()

2020-04-24 Thread Christian Gromm
This patch replaces function module_init() with subsys_initcall(). It is needed to ensure that the core module of the driver is initialized before a component tries to register with the core. This leads to a NULL pointer dereference if the driver is configured as in-tree. Signed-off-by: Christian

[PATCH v3] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Suraj Upadhyay
Break lines with length over 80 characters to conform to the linux coding style and refactor wherever necessary. Signed-off-by: Suraj Upadhyay --- Changes in v3: - Changed the temporary variable name for the memzcmp statement to is_used. (as suggested). - Added a

Re: [PATCH v2] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Jerome Pouiller
On Friday 24 April 2020 14:41:32 CEST Suraj Upadhyay wrote: > Break lines with length over 80 characters to conform > to the linux coding style and refactor wherever necessary. > > Signed-off-by: Suraj Upadhyay > --- > > Changes in v2: > - Introduced a temporary variable for the memzcmp

Re: [PATCH v2] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Dan Carpenter
On Fri, Apr 24, 2020 at 06:11:32PM +0530, Suraj Upadhyay wrote: > static int wfx_get_hw_rate(struct wfx_dev *wdev, > const struct ieee80211_tx_rate *rate) > { > + struct ieee80211_rate tmp; > if (rate->idx < 0) > return -1; > if (rate->flags

Re: [PATCH] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Suraj Upadhyay
On Thu, Apr 23, 2020 at 09:29:28AM +, Jerome Pouiller wrote: > Hello Suraj, > > Thank you for your contribution. This would be my first patch to linux-kernel :) > On Wednesday 22 April 2020 17:39:00 CEST Suraj Upadhyay wrote: > > > > Break lines with length over 80 characters to conform > >

[PATCH v2] staging: wfx: cleanup long lines in data_tx.c

2020-04-24 Thread Suraj Upadhyay
Break lines with length over 80 characters to conform to the linux coding style and refactor wherever necessary. Signed-off-by: Suraj Upadhyay --- Changes in v2: - Introduced a temporary variable for the memzcmp statement. - Addressed the checkpatch problem with

Re: [PATCH v7 2/2] drm/bridge: anx7625: Add anx7625 MIPI DSI/DPI to DP bridge driver

2020-04-24 Thread Nicolas Boichat
On Fri, Apr 24, 2020 at 2:51 PM Xin Ji wrote: > > On Thu, Apr 23, 2020 at 07:55:15PM +0800, Nicolas Boichat wrote: > > Hi, > > > > Just commenting on the mode_fixup function that was added in v7. > > > [snip] > > > + /* > > > +* once illegal timing detected, use default HFP, HSYNC,

Re: [PATCH] staging: wfx: check ssidlen and prevent an array overflow

2020-04-24 Thread Jerome Pouiller
On Friday 24 April 2020 12:42:35 CEST Dan Carpenter wrote: > > We need to cap "ssidlen" to prevent a memcpy() overflow. > > Fixes: 40115bbc40e2 ("staging: wfx: implement the rest of mac80211 API") > Signed-off-by: Dan Carpenter > --- > drivers/staging/wfx/sta.c | 4 +++- > 1 file changed, 3

Re: b276527539 ("staging: most: move core files out of the staging .."): [ 12.247349] BUG: kernel NULL pointer dereference, address: 00000000

2020-04-24 Thread Greg KH
On Fri, Apr 24, 2020 at 10:21:05AM +, christian.gr...@microchip.com wrote: > On Fri, 2020-04-24 at 12:16 +0200, Greg KH wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you > > know the content is safe > > > > On Fri, Apr 24, 2020 at 09:41:36AM +, > >

[PATCH] staging: wfx: check ssidlen and prevent an array overflow

2020-04-24 Thread Dan Carpenter
We need to cap "ssidlen" to prevent a memcpy() overflow. Fixes: 40115bbc40e2 ("staging: wfx: implement the rest of mac80211 API") Signed-off-by: Dan Carpenter --- drivers/staging/wfx/sta.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wfx/sta.c

Re: b276527539 ("staging: most: move core files out of the staging .."): [ 12.247349] BUG: kernel NULL pointer dereference, address: 00000000

2020-04-24 Thread Christian.Gromm
On Fri, 2020-04-24 at 12:16 +0200, Greg KH wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you > know the content is safe > > On Fri, Apr 24, 2020 at 09:41:36AM +, > christian.gr...@microchip.com wrote: > > On Sun, 2020-03-29 at 21:39 +0800, kernel test robot wrote: >

Re: b276527539 ("staging: most: move core files out of the staging .."): [ 12.247349] BUG: kernel NULL pointer dereference, address: 00000000

2020-04-24 Thread Greg KH
On Fri, Apr 24, 2020 at 09:41:36AM +, christian.gr...@microchip.com wrote: > On Sun, 2020-03-29 at 21:39 +0800, kernel test robot wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you > > know the content is safe > > > > Greetings, > > > > 0day kernel testing robot got

Re: b276527539 ("staging: most: move core files out of the staging .."): [ 12.247349] BUG: kernel NULL pointer dereference, address: 00000000

2020-04-24 Thread Christian.Gromm
On Sun, 2020-03-29 at 21:39 +0800, kernel test robot wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you > know the content is safe > > Greetings, > > 0day kernel testing robot got the below dmesg and the first bad > commit is > >

Re: [PATCH v7 2/2] drm/bridge: anx7625: Add anx7625 MIPI DSI/DPI to DP bridge driver

2020-04-24 Thread Xin Ji
On Thu, Apr 23, 2020 at 07:55:15PM +0800, Nicolas Boichat wrote: > Hi, > > Just commenting on the mode_fixup function that was added in v7. > > On Tue, Feb 25, 2020 at 2:15 PM Xin Ji wrote: > > > > The ANX7625 is an ultra-low power 4K Mobile HD Transmitter designed > > for portable device. It