Re: [PATCH] drm/msm: Convert comma to semicolon

2025-05-04 Thread Dmitry Baryshkov
On Thu, 10 Apr 2025 10:52:21 +0800, Chen Ni wrote: > Replace comma between expressions with semicolons. > > Using a ',' in place of a ';' can have unintended side effects. > Although that is not the case here, it is seems best to use ';' > unless ',' is intended. > > Found by inspection. > No f

Re: [PATCH] drm/msm: Convert comma to semicolon

2025-04-29 Thread Dmitry Baryshkov
On Thu, Apr 10, 2025 at 10:52:21AM +0800, Chen Ni wrote: > Replace comma between expressions with semicolons. > > Using a ',' in place of a ';' can have unintended side effects. > Although that is not the case here, it is seems best to use ';' > unless ',' is intended. > > Found by inspection. >

Re: [PATCH] drm/msm: Convert comma to semicolon

2025-04-10 Thread Dmitry Baryshkov
On Thu, Apr 10, 2025 at 10:52:21AM +0800, Chen Ni wrote: > Replace comma between expressions with semicolons. > > Using a ',' in place of a ';' can have unintended side effects. > Although that is not the case here, it is seems best to use ';' > unless ',' is intended. > > Found by inspection. >

[PATCH] drm/msm: Convert comma to semicolon

2025-04-10 Thread Chen Ni
Replace comma between expressions with semicolons. Using a ',' in place of a ';' can have unintended side effects. Although that is not the case here, it is seems best to use ';' unless ',' is intended. Found by inspection. No functional change intended. Compile tested only. Signed-off-by: Chen