Re: [PATCH V5 2/8] misc/pvpanic: Remove one extra semicolon

2018-11-01 Thread Andy Shevchenko
On Thu, Nov 1, 2018 at 1:34 PM Mark Rutland wrote: > > On Thu, Nov 01, 2018 at 11:09:56PM +0800, Peng Hao wrote: > > There is an extra semicolon in pvpanic_device_ids, remove it. > > This is a comma, not a semicolon. > > How about: > > Since there should be nothing after the sentinel entry in an

Re: [PATCH V5 2/8] misc/pvpanic: Remove one extra semicolon

2018-11-01 Thread Mark Rutland
On Thu, Nov 01, 2018 at 11:09:56PM +0800, Peng Hao wrote: > There is an extra semicolon in pvpanic_device_ids, remove it. This is a comma, not a semicolon. How about: Since there should be nothing after the sentinel entry in an acpi_device_id list, it doesn't make sense for it to have a trai

[PATCH V5 2/8] misc/pvpanic: Remove one extra semicolon

2018-11-01 Thread Peng Hao
There is an extra semicolon in pvpanic_device_ids, remove it. Signed-off-by: Peng Hao --- drivers/misc/pvpanic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/misc/pvpanic.c b/drivers/misc/pvpanic.c index fd86dab..059005c 100644 --- a/drivers/misc/pvpanic.c +++ b/dr