CURSOS BONIFICABLES DESDE CASA (Empleados activos y en ERTE)

2020-05-10 Thread info14
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 E-lear

[PATCH] staging: greybus: Fix uninitialized scalar variable

2020-05-10 Thread Oscar Carter
In the "gb_tty_set_termios" function the "newline" variable is declared but not initialized. So the "flow_control" member is not initialized and the OR / AND operations with itself results in an undefined value in this member. The purpose of the code is to set the flow control type, so remove the

[PATCH v2 2/2] staging: vt6655: vt6656: change order of makefile variable definitions

2020-05-10 Thread Matej Dujava
This patch will add indentation to multiline variable and put obj-$(CONFIG_X) at the begining of the file. Signed-off-by: Matej Dujava --- drivers/staging/vt6655/Makefile | 24 drivers/staging/vt6656/Makefile | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-)

[PATCH v2 0/2] staging: vt6656: vt6655: cleaning Makefile

2020-05-10 Thread Matej Dujava
This patchset will remove unused definitions of C Macros, reorder variable definition and increase indentation to match visual block. --- v2: spliting original patch to 2 separate patches Matej Dujava (2): staging: vt6656: vt6655: clean Makefiles staging: vt6655: vt6656: change order of make

[PATCH v2 1/2] staging: vt6656: vt6655: clean Makefiles

2020-05-10 Thread Matej Dujava
This patch is removing CFLAGS that are defining flags that are not used. Signed-off-by: Matej Dujava --- drivers/staging/vt6655/Makefile | 3 --- drivers/staging/vt6655/device_main.c | 1 - drivers/staging/vt6656/Makefile | 3 --- 3 files changed, 7 deletions(-) diff --git a/drivers/s

[PATCH V3] staging: vc04_services: vchiq_connected.c: Block comment alignment

2020-05-10 Thread John Oldman
Coding style issue This patch clears the checkpatch.pl "Block comments should align the * on each line" warning. Signed-off-by: John Oldman --- v1: Initial attempt. v2: Resubmitted with shorter comment line, as suggested by Greg KH. v3: Resubmitted with descriptiuon text moved into the comment a

[PATCH] staging: vt6656: Remove logically dead code

2020-05-10 Thread Oscar Carter
In the start of the "vnt_rf_set_txpower" function the "power" variable is set at most to VNT_RF_MAX_POWER (hex = 0x3f, dec = 63). Then, in the switch statement there are four comparisons with the "power" variable against AL7230_PWR_IDX_LEN (dec = 64), VT3226_PWR_IDX_LEN (dec = 64), VT3342_PWR_IDX_L

Re: [PATCH V2] staging: vc04_services: vchiq_connected.c: Block comment alignment

2020-05-10 Thread John Oldman
Thanks for the feedback Greg. Will resubmit the patch as you suggest. Thanks john On Sun, 10 May 2020 at 07:55, Greg KH wrote: > > On Sun, May 10, 2020 at 07:06:45AM +0100, John Oldman wrote: > > Coding style issue > > > > Signed-off-by: John Oldman > > --- > > v1: Initial attempt. > > V2: Resub