xref: /freebsd/sys/compat/linuxkpi/common/include/linux/apple-gmux.h (revision 730387b64e10b617f6f0b6f3a64501dc35dd7861)
1 /* Public domain. */
2 
3 #ifndef _LINUXKPI_LINUX_APPLE_GMUX_H
4 #define _LINUXKPI_LINUX_APPLE_GMUX_H
5 
6 static inline bool
apple_gmux_detect(void * a,void * b)7 apple_gmux_detect(void *a, void *b)
8 {
9 	return false;
10 }
11 
12 #endif
13