blob: 616631e9aa3bfdc863b0aa16a837d2c19cc734ae [file] [log] [blame]
Maxime Ripard3c8f98f2015-10-15 14:34:13 +02001/*
2 * (C) Copyright 2008 - 2009
3 * Windriver, <www.windriver.com>
4 * Tom Rix <Tom.Rix@windriver.com>
5 *
6 * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
7 *
8 * Copyright 2014 Linaro, Ltd.
9 * Rob Herring <robh@kernel.org>
10 *
11 * SPDX-License-Identifier: GPL-2.0+
12 */
13#ifndef _FASTBOOT_H_
14#define _FASTBOOT_H_
15
16/* The 64 defined bytes plus \0 */
17#define FASTBOOT_RESPONSE_LEN (64 + 1)
18
Steve Rae9bc34792016-06-07 11:19:37 -070019void fastboot_fail(const char *reason);
20void fastboot_okay(const char *reason);
Maxime Ripard3c8f98f2015-10-15 14:34:13 +020021
22#endif /* _FASTBOOT_H_ */