aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorruanjinjie <ruanjinjie@huawei.com>2022-09-26 10:32:53 +0800
committerThomas Zimmermann <tzimmermann@suse.de>2022-09-26 09:11:47 +0200
commit4aef2085613106d0a3ce868a45f080babb4e3478 (patch)
tree3375c504148fcfc27118fdb1c81d448aeeb6a186
parentdrm/panel-edp: Add AUO B116XAK01.6 (diff)
downloadlinux-dev-4aef2085613106d0a3ce868a45f080babb4e3478.tar.xz
linux-dev-4aef2085613106d0a3ce868a45f080babb4e3478.zip
drm/ast: make ast_modeset static
The symbol is not used outside of the file, so mark it static. Fixes the following warning: drivers/gpu/drm/ast/ast_drv.c:42:5: warning: symbol 'ast_modeset' was not declared. Should it be static? Signed-off-by: ruanjinjie <ruanjinjie@huawei.com> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/20220926023253.739699-1-ruanjinjie@huawei.com
-rw-r--r--drivers/gpu/drm/ast/ast_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ast/ast_drv.c b/drivers/gpu/drm/ast/ast_drv.c
index 760b27971557..b9392f31e629 100644
--- a/drivers/gpu/drm/ast/ast_drv.c
+++ b/drivers/gpu/drm/ast/ast_drv.c
@@ -39,7 +39,7 @@
#include "ast_drv.h"
-int ast_modeset = -1;
+static int ast_modeset = -1;
MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
module_param_named(modeset, ast_modeset, int, 0400);