diff options
author | Dave Airlie <airlied@redhat.com> | 2017-09-28 02:21:33 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-09-28 23:49:36 +0300 |
commit | 24a0d8538ed36ae08d8009bd4a46c6eb36d92bd1 (patch) | |
tree | 0ed260143b83ce9227dd7f82a5222e35542dc0a2 | |
parent | 0a26a45d1a2338326a369c9544dc5141a6e75106 (diff) | |
download | linux-24a0d8538ed36ae08d8009bd4a46c6eb36d92bd1.tar.xz |
amdgpu/dc: add static to construct function
There was a global construct symbol in the module symbols, kill it.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c b/drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c index a6c3a7229def..5c558969f39f 100644 --- a/drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c +++ b/drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c @@ -406,7 +406,7 @@ static const struct irq_service_funcs irq_service_funcs_dce110 = { .to_dal_irq_source = to_dal_irq_source_dce110 }; -bool construct( +static bool construct( struct irq_service *irq_service, struct irq_service_init_data *init_data) { |