commit | 12d738ae4c97c551df6ed0ebe93406683f6032c1 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed May 17 08:22:40 2017 -0600 |
committer | Tom Rini <trini@konsulko.com> | Mon Jun 05 11:02:29 2017 -0400 |
tree | c676584ad98541c12ccbe6857c8e26edcf733e0c | |
parent | 4baf23e0beaca4ea90983c8f97e1bba0282b5fc1 [diff] [blame] |
api: Add a header for api_init() Put this in its own header instead of using common.h. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/include/api.h b/include/api.h new file mode 100644 index 0000000..85817f3 --- /dev/null +++ b/include/api.h
@@ -0,0 +1,13 @@ +/* + * Copyright (c) 2017 Google, Inc + * Written by Simon Glass <sjg@chromium.org> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __API_H +#define __API_H + +void api_init(void); + +#endif