]> Git Repo - J-linux.git/blob - include/video/cmdline.h
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[J-linux.git] / include / video / cmdline.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef VIDEO_CMDLINE_H
4 #define VIDEO_CMDLINE_H
5
6 #include <linux/types.h>
7
8 #if defined(CONFIG_VIDEO_CMDLINE)
9 const char *video_get_options(const char *name);
10
11 /* exported for compatibility with fbdev; don't use in new code */
12 bool __video_get_options(const char *name, const char **option, bool is_of);
13 #else
14 static inline const char *video_get_options(const char *name)
15 {
16         return NULL;
17 }
18 #endif
19
20 #endif
This page took 0.028906 seconds and 4 git commands to generate.