matroxfb_g450.h 467 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __MATROXFB_G450_H__
  3. #define __MATROXFB_G450_H__
  4. #include "matroxfb_base.h"
  5. #ifdef CONFIG_FB_MATROX_G
  6. void matroxfb_g450_connect(struct matrox_fb_info *minfo);
  7. void matroxfb_g450_shutdown(struct matrox_fb_info *minfo);
  8. #else
  9. static inline void matroxfb_g450_connect(struct matrox_fb_info *minfo) { };
  10. static inline void matroxfb_g450_shutdown(struct matrox_fb_info *minfo) { };
  11. #endif
  12. #endif /* __MATROXFB_G450_H__ */