xref: /openbsd-src/sys/dev/pci/drm/include/linux/mux/consumer.h (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
1 /* Public domain. */
2 
3 #ifndef _LINUX_MUX_CONSUMER_H
4 #define _LINUX_MUX_CONSUMER_H
5 
6 struct mux_control;
7 
8 static inline struct mux_control *
9 devm_mux_control_get(struct device *dev, const char *name)
10 {
11 	return NULL;
12 }
13 
14 static inline int
15 mux_control_select(struct mux_control *mux, u_int state)
16 {
17 	return 0;
18 }
19 
20 #endif
21