mx5_video.h 572 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2012
  3. * Anatolij Gustschin, DENX Software Engineering, <agust@denx.de>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. */
  10. #ifndef __MX5_VIDEO_H
  11. #define __MX5_VIDEO_H
  12. #ifdef CONFIG_VIDEO
  13. void lcd_enable(void);
  14. void setup_iomux_lcd(void);
  15. #else
  16. static inline void lcd_enable(void) { }
  17. static inline void setup_iomux_lcd(void) { }
  18. #endif
  19. #endif