blob: ed52daeb1b8df1c4f14fd9a90f0b451207b81551 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Maxime Ripard3c8f98f2015-10-15 14:34:13 +02002/*
3 * (C) Copyright 2008 - 2009
4 * Windriver, <www.windriver.com>
5 * Tom Rix <Tom.Rix@windriver.com>
6 *
7 * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
9 * Copyright 2014 Linaro, Ltd.
10 * Rob Herring <robh@kernel.org>
Maxime Ripard3c8f98f2015-10-15 14:34:13 +020011 */
12#ifndef _FASTBOOT_H_
13#define _FASTBOOT_H_
14
15/* The 64 defined bytes plus \0 */
16#define FASTBOOT_RESPONSE_LEN (64 + 1)
17
Alex Kiernanc4ded032018-05-29 15:30:40 +000018void fastboot_fail(const char *reason, char *response);
19void fastboot_okay(const char *reason, char *response);
Maxime Ripard3c8f98f2015-10-15 14:34:13 +020020
21#endif /* _FASTBOOT_H_ */