omapfb.h 576 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * File: include/linux/omapfb.h
  4. *
  5. * Framebuffer driver for TI OMAP boards
  6. *
  7. * Copyright (C) 2004 Nokia Corporation
  8. * Author: Imre Deak <imre.deak@nokia.com>
  9. */
  10. #ifndef __LINUX_OMAPFB_H__
  11. #define __LINUX_OMAPFB_H__
  12. #include <uapi/linux/omapfb.h>
  13. struct omap_lcd_config {
  14. char panel_name[16];
  15. char ctrl_name[16];
  16. s16 nreset_gpio;
  17. u8 data_lines;
  18. };
  19. struct omapfb_platform_data {
  20. struct omap_lcd_config lcd;
  21. };
  22. void __init omapfb_set_lcd_config(const struct omap_lcd_config *config);
  23. #endif /* __OMAPFB_H */