2023-02-09 14:55:06 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
|
|
#ifndef VIDEO_CMDLINE_H
|
|
|
|
|
#define VIDEO_CMDLINE_H
|
|
|
|
|
|
2024-01-18 10:05:27 +01:00
|
|
|
#include <linux/kconfig.h>
|
2023-02-09 14:55:06 +01:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
|
|
const char *video_get_options(const char *name);
|
|
|
|
|
|
2024-01-18 10:05:27 +01:00
|
|
|
#if IS_ENABLED(CONFIG_FB_CORE)
|
2023-02-09 14:55:06 +01:00
|
|
|
/* exported for compatibility with fbdev; don't use in new code */
|
|
|
|
|
bool __video_get_options(const char *name, const char **option, bool is_of);
|
2024-01-18 10:05:27 +01:00
|
|
|
#endif
|
2023-02-09 14:55:06 +01:00
|
|
|
|
|
|
|
|
#endif
|