Skip to content
Snippets Groups Projects
Commit ad1cf785 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Simon Glass
Browse files

clk: add needed include and declaration to include/clk.h


This header uses ulong, so it needs to include <linux/types.h>.
Likewise, "struct udevice" must be declared before it is used.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 8bdf9cfd
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,10 @@
#ifndef _CLK_H_
#define _CLK_H_
#include <linux/types.h>
struct udevice;
int soc_clk_dump(void);
struct clk_ops {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment