xref: /openbsd-src/sys/dev/pci/drm/include/linux/mux/consumer.h (revision 667382c7a43214428c9590fa699030f09445b426)
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 *
devm_mux_control_get(struct device * dev,const char * name)9 devm_mux_control_get(struct device *dev, const char *name)
10 {
11 	return NULL;
12 }
13 
14 static inline int
mux_control_select(struct mux_control * mux,u_int state)15 mux_control_select(struct mux_control *mux, u_int state)
16 {
17 	return 0;
18 }
19 
20 #endif
21