Files
cdba/conmux.h
Bjorn Andersson 1abac8b200 device: Combine power_on/power_off througout
Squash the power_on and power_off into a single "power" function, to
harmonize the code wrt the USB handling.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2021-01-22 18:52:03 -06:00

13 lines
241 B
C

#ifndef __CONMUX_H__
#define __CONMUX_H__
#include "device.h"
struct conmux;
void *conmux_open(struct device *dev);
int conmux_power(struct device *dev, bool on);
int conmux_write(struct device *dev, const void *buf, size_t len);
#endif