Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-08-13 Thread Simon Glass
Hi Heinrich, On Fri, 9 Aug 2019 at 15:36, Heinrich Schuchardt wrote: > > On 6/24/19 8:49 PM, Simon Glass wrote: > > Hi Heinrich, > > > > On Mon, 24 Jun 2019 at 11:36, Heinrich Schuchardt > > wrote: > >> > >> On 6/24/19 3:56 PM, Simon Glass wrote: > >>> On Sun, 16 Jun 2019 at 22:44, Heinrich

Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-08-09 Thread Heinrich Schuchardt
On 6/24/19 8:49 PM, Simon Glass wrote: Hi Heinrich, On Mon, 24 Jun 2019 at 11:36, Heinrich Schuchardt wrote: On 6/24/19 3:56 PM, Simon Glass wrote: On Sun, 16 Jun 2019 at 22:44, Heinrich Schuchardt wrote: Avoid duplicate translation of arrow key codes. Signed-off-by: Heinrich Schuchardt

Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-06-24 Thread Simon Glass
Hi Heinrich, On Mon, 24 Jun 2019 at 11:36, Heinrich Schuchardt wrote: > > On 6/24/19 3:56 PM, Simon Glass wrote: > > On Sun, 16 Jun 2019 at 22:44, Heinrich Schuchardt > > wrote: > >> > >> Avoid duplicate translation of arrow key codes. > >> > >> Signed-off-by: Heinrich Schuchardt > >> --- >

Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-06-24 Thread Heinrich Schuchardt
On 6/24/19 3:56 PM, Simon Glass wrote: On Sun, 16 Jun 2019 at 22:44, Heinrich Schuchardt wrote: Avoid duplicate translation of arrow key codes. Signed-off-by: Heinrich Schuchardt --- common/usb_kbd.c | 31 +-- 1 file changed, 9 insertions(+), 22 deletions(-)

Re: [U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-06-24 Thread Simon Glass
On Sun, 16 Jun 2019 at 22:44, Heinrich Schuchardt wrote: > > Avoid duplicate translation of arrow key codes. > > Signed-off-by: Heinrich Schuchardt > --- > common/usb_kbd.c | 31 +-- > 1 file changed, 9 insertions(+), 22 deletions(-) Reviewed-by: Simon Glass We

[U-Boot] [PATCH 1/2] usb: kbd: simplify coding for arrow keys

2019-06-16 Thread Heinrich Schuchardt
Avoid duplicate translation of arrow key codes. Signed-off-by: Heinrich Schuchardt --- common/usb_kbd.c | 31 +-- 1 file changed, 9 insertions(+), 22 deletions(-) diff --git a/common/usb_kbd.c b/common/usb_kbd.c index cc99c6be07..232d278e13 100644 ---