mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
For some devices to reliably boot into fastboot mode volume down needs to be held, so do this as we power on the device and release it as fastboot appears. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
14 lines
265 B
C
14 lines
265 B
C
#ifndef __ALPACA_H__
|
|
#define __ALPACA_H__
|
|
|
|
#include "device.h"
|
|
|
|
struct alpaca;
|
|
|
|
void *alpaca_open(struct device *dev);
|
|
int alpaca_power_on(struct device *dev);
|
|
int alpaca_power_off(struct device *dev);
|
|
void alpaca_fastboot_key(struct device *dev, bool on);
|
|
|
|
#endif
|