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)9devm_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)15mux_control_select(struct mux_control *mux, u_int state) 16 { 17 return 0; 18 } 19 20 #endif 21