cmdline.h 382 B

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