* [PATCH v2] drm/amd/dc: resource: fix semicolon.cocci warnings (fwd)
@ 2017-02-14 6:21 Julia Lawall
2017-02-14 9:47 ` Christian König
0 siblings, 1 reply; 3+ messages in thread
From: Julia Lawall @ 2017-02-14 6:21 UTC (permalink / raw)
To: Harry Wentland
Cc: dri-devel, Alex Deucher, Christian König, David Airlie,
kbuild-all, linux-kernel
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
v2: make subject line unique
tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-4.9
head: 79d2de1bcb650296adff1cb08bfbf1501a6e6e14
commit: bad4c165a6986a131cdd1455507ba3857baaa561 [201/657] drm/amd/dc: Add
dc display driver
dc_resource.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
+++ b/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
@@ -135,7 +135,7 @@ static void update_num_audio(
break;
default:
DC_ERR("DC: unexpected audio fuse!\n");
- };
+ }
}
bool resource_construct(
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] drm/amd/dc: resource: fix semicolon.cocci warnings (fwd)
2017-02-14 6:21 [PATCH v2] drm/amd/dc: resource: fix semicolon.cocci warnings (fwd) Julia Lawall
@ 2017-02-14 9:47 ` Christian König
2017-02-14 17:07 ` Harry Wentland
0 siblings, 1 reply; 3+ messages in thread
From: Christian König @ 2017-02-14 9:47 UTC (permalink / raw)
To: Julia Lawall, Harry Wentland
Cc: dri-devel, Alex Deucher, David Airlie, kbuild-all, linux-kernel
Am 14.02.2017 um 07:21 schrieb Julia Lawall:
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci
>
> CC: Harry Wentland <harry.wentland@amd.com>
> Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Christian König <christian.koenig@amd.com> for this one as
well as the other similar patches.
Thanks for letting us know about those typos.
Regards,
Christian.
> ---
>
> v2: make subject line unique
>
> tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-4.9
> head: 79d2de1bcb650296adff1cb08bfbf1501a6e6e14
> commit: bad4c165a6986a131cdd1455507ba3857baaa561 [201/657] drm/amd/dc: Add
> dc display driver
>
> dc_resource.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
> +++ b/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
> @@ -135,7 +135,7 @@ static void update_num_audio(
> break;
> default:
> DC_ERR("DC: unexpected audio fuse!\n");
> - };
> + }
> }
>
> bool resource_construct(
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] drm/amd/dc: resource: fix semicolon.cocci warnings (fwd)
2017-02-14 9:47 ` Christian König
@ 2017-02-14 17:07 ` Harry Wentland
0 siblings, 0 replies; 3+ messages in thread
From: Harry Wentland @ 2017-02-14 17:07 UTC (permalink / raw)
To: Christian König, Julia Lawall
Cc: dri-devel, Alex Deucher, David Airlie, kbuild-all, linux-kernel
Thanks for these fixes. I'll merge them.
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Harry
On 2017-02-14 04:47 AM, Christian König wrote:
> Am 14.02.2017 um 07:21 schrieb Julia Lawall:
>> Remove unneeded semicolon.
>>
>> Generated by: scripts/coccinelle/misc/semicolon.cocci
>>
>> CC: Harry Wentland <harry.wentland@amd.com>
>> Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
>> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
>
> Acked-by: Christian König <christian.koenig@amd.com> for this one as
> well as the other similar patches.
>
> Thanks for letting us know about those typos.
>
> Regards,
> Christian.
>
>> ---
>>
>> v2: make subject line unique
>>
>> tree: git://people.freedesktop.org/~agd5f/linux.git amd-staging-4.9
>> head: 79d2de1bcb650296adff1cb08bfbf1501a6e6e14
>> commit: bad4c165a6986a131cdd1455507ba3857baaa561 [201/657]
>> drm/amd/dc: Add
>> dc display driver
>>
>> dc_resource.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> --- a/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.c
>> @@ -135,7 +135,7 @@ static void update_num_audio(
>> break;
>> default:
>> DC_ERR("DC: unexpected audio fuse!\n");
>> - };
>> + }
>> }
>>
>> bool resource_construct(
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-02-14 17:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-14 6:21 [PATCH v2] drm/amd/dc: resource: fix semicolon.cocci warnings (fwd) Julia Lawall
2017-02-14 9:47 ` Christian König
2017-02-14 17:07 ` Harry Wentland
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox