diff options
Diffstat (limited to 'include/video/cmdline.h')
| -rw-r--r-- | include/video/cmdline.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/video/cmdline.h b/include/video/cmdline.h new file mode 100644 index 000000000000..76649465bb08 --- /dev/null +++ b/include/video/cmdline.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef VIDEO_CMDLINE_H +#define VIDEO_CMDLINE_H + +#include <linux/kconfig.h> +#include <linux/types.h> + +const char *video_get_options(const char *name); + +#if IS_ENABLED(CONFIG_FB_CORE) +/* exported for compatibility with fbdev; don't use in new code */ +bool __video_get_options(const char *name, const char **option, bool is_of); +#endif + +#endif |
