Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.13-rc3 15 lines 467 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __MATROXFB_G450_H__ 3#define __MATROXFB_G450_H__ 4 5#include "matroxfb_base.h" 6 7#ifdef CONFIG_FB_MATROX_G 8void matroxfb_g450_connect(struct matrox_fb_info *minfo); 9void matroxfb_g450_shutdown(struct matrox_fb_info *minfo); 10#else 11static inline void matroxfb_g450_connect(struct matrox_fb_info *minfo) { }; 12static inline void matroxfb_g450_shutdown(struct matrox_fb_info *minfo) { }; 13#endif 14 15#endif /* __MATROXFB_G450_H__ */