1/* Public domain. */
2
3#ifndef _LINUX_MUX_CONSUMER_H
4#define _LINUX_MUX_CONSUMER_H
5
6struct mux_control;
7
8static inline struct mux_control *
9devm_mux_control_get(struct device *dev, const char *name)
10{
11	return NULL;
12}
13
14static inline int
15mux_control_select(struct mux_control *mux, u_int state)
16{
17	return 0;
18}
19
20#endif
21