diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-11-26 16:00:58 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-08 09:35:46 -0500 |
commit | afc366f01bea2361bc08b1a7b51e0cef81d66173 (patch) | |
tree | 0374b9f06740ed7bfb8038728ad174852921c4ae /drivers/power | |
parent | e873b97a01937549f2dbf0acdb0130d732a3dfb7 (diff) | |
download | u-boot-afc366f01bea2361bc08b1a7b51e0cef81d66173.tar.gz u-boot-afc366f01bea2361bc08b1a7b51e0cef81d66173.tar.xz u-boot-afc366f01bea2361bc08b1a7b51e0cef81d66173.zip |
Replace <compiler.h> with <linux/compiler.h>
Including <linux/compiler.h> is enough for general use.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/power_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/power_i2c.c b/drivers/power/power_i2c.c index 594cd11725..0dcf9fe918 100644 --- a/drivers/power/power_i2c.c +++ b/drivers/power/power_i2c.c @@ -14,7 +14,7 @@ #include <linux/types.h> #include <power/pmic.h> #include <i2c.h> -#include <compiler.h> +#include <linux/compiler.h> int pmic_reg_write(struct pmic *p, u32 reg, u32 val) { |