| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | 
|---|---|
| 2 | |
| 3 | #ifndef VIDEO_CMDLINE_H | 
| 4 | #define VIDEO_CMDLINE_H | 
| 5 | |
| 6 | #include <linux/kconfig.h> | 
| 7 | #include <linux/types.h> | 
| 8 | |
| 9 | const char *video_get_options(const char *name); | 
| 10 | |
| 11 | #if IS_ENABLED(CONFIG_FB_CORE) | 
| 12 | /* exported for compatibility with fbdev; don't use in new code */ | 
| 13 | bool __video_get_options(const char *name, const char **option, bool is_of); | 
| 14 | #endif | 
| 15 | |
| 16 | #endif | 
| 17 | 
