From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2018-05-03 18:04:23
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/video/fbdev/pxafb.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patch queued for 4.18, thanks.
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2018-05-15 11:35:03
On Tue, 2018-05-15 at 12:37 +0200, Bartlomiej Zolnierkiewicz wrote:
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
quoted
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patch queued for 4.18, thanks.
I went through it again and found a bug, the type "unknown" should be
left untouched.
--
Andy Shevchenko [off-list ref]
Intel Finland Oy
On Tuesday, May 15, 2018 02:35:03 PM Andy Shevchenko wrote:
On Tue, 2018-05-15 at 12:37 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
quoted
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patch queued for 4.18, thanks.
I went through it again and found a bug, the type "unknown" should be
left untouched.
Indeed, could you provide incremental fix?
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2018-05-15 11:59:20
On Tue, 2018-05-15 at 13:54 +0200, Bartlomiej Zolnierkiewicz wrote:
On Tuesday, May 15, 2018 02:35:03 PM Andy Shevchenko wrote:
quoted
On Tue, 2018-05-15 at 12:37 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
quoted
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.co
m>
Patch queued for 4.18, thanks.
I went through it again and found a bug, the type "unknown" should
be
left untouched.
Indeed, could you provide incremental fix?
Is it late enough to drop patch completely? If so, I do a fix asap.
--
Andy Shevchenko [off-list ref]
Intel Finland Oy
On Tuesday, May 15, 2018 02:59:20 PM Andy Shevchenko wrote:
On Tue, 2018-05-15 at 13:54 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Tuesday, May 15, 2018 02:35:03 PM Andy Shevchenko wrote:
quoted
On Tue, 2018-05-15 at 12:37 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
quoted
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.co
m>
Patch queued for 4.18, thanks.
I went through it again and found a bug, the type "unknown" should
be
left untouched.
Indeed, could you provide incremental fix?
Is it late enough to drop patch completely? If so, I do a fix asap.
It is already merged in publicly available tree (which is not being
rebased) so it is too late to drop it completely.
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
On Tuesday, May 15, 2018 02:17:35 PM Bartlomiej Zolnierkiewicz wrote:
On Tuesday, May 15, 2018 02:59:20 PM Andy Shevchenko wrote:
quoted
On Tue, 2018-05-15 at 13:54 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Tuesday, May 15, 2018 02:35:03 PM Andy Shevchenko wrote:
quoted
On Tue, 2018-05-15 at 12:37 +0200, Bartlomiej Zolnierkiewicz wrote:
quoted
On Thursday, May 03, 2018 09:04:23 PM Andy Shevchenko wrote:
quoted
The new helper returns index of the matching string in an array.
We are going to use it here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.co
m>
Patch queued for 4.18, thanks.
I went through it again and found a bug, the type "unknown" should
be
left untouched.
Indeed, could you provide incremental fix?
Is it late enough to drop patch completely? If so, I do a fix asap.
It is already merged in publicly available tree (which is not being
rebased) so it is too late to drop it completely.
OK, I fixed it myself with the patch below.
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
From: Bartlomiej Zolnierkiewicz <redacted>
Subject: [PATCH] video: fbdev: pxafb: match_string() conversion fixup
"unknown" lcd_types[] entry is needed for proper operation of
the driver, add it back.
Fixes: 6d09dfe70f8f ("video: fbdev: pxafb: Convert to use match_string() helper")
Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Arvind Yadav <redacted>
Signed-off-by: Bartlomiej Zolnierkiewicz <redacted>
---
drivers/video/fbdev/pxafb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: b/drivers/video/fbdev/pxafb.c
=================================--- a/drivers/video/fbdev/pxafb.c 2018-05-15 17:41:00.922315366 +0200
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2018-05-15 16:23:09
On Tue, 2018-05-15 at 18:06 +0200, Bartlomiej Zolnierkiewicz wrote:
On Tuesday, May 15, 2018 02:17:35 PM Bartlomiej Zolnierkiewicz wrote:
quoted
On Tuesday, May 15, 2018 02:59:20 PM Andy Shevchenko wrote:
quoted
It is already merged in publicly available tree (which is not being
rebased) so it is too late to drop it completely.
Oh, sorry for that.
OK, I fixed it myself with the patch below.
From: Bartlomiej Zolnierkiewicz <redacted>
Subject: [PATCH] video: fbdev: pxafb: match_string() conversion fixup
"unknown" lcd_types[] entry is needed for proper operation of
the driver, add it back.
Yes, that's correct now.
I was thinking that we perhaps add a comment that the list of these
names should be in sync with definitions in the header.
--
Andy Shevchenko [off-list ref]
Intel Finland Oy