X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Ftwl4030.h;h=c27ad615eebf9cca9c01ec02f433566e2ac5457b;hb=a1f5f4ac20c0947afda93f9b906facfbee2708fe;hp=103137372d309c2d2e906297d619d5841040e04f;hpb=7c0e5d865ff0b86dfce492b656238919c659d756;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/twl4030.h b/include/twl4030.h index 1031373..c27ad61 100644 --- a/include/twl4030.h +++ b/include/twl4030.h @@ -1,9 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2009 Wind River Systems, Inc. * Tom Rix * - * SPDX-License-Identifier: GPL-2.0+ - * * Derived from code on omapzoom, git://git.omapzoom.com/repo/u-boot.git * * Copyright (C) 2007-2009 Texas Instruments, Inc. @@ -649,6 +648,7 @@ * examples are TWL4030_PM_RECEIVER_VMMC1_DEV_GRP and * TWL4030_LED_LEDEN. */ +#ifndef CONFIG_DM_I2C static inline int twl4030_i2c_write_u8(u8 chip_no, u8 reg, u8 val) { return i2c_write(chip_no, reg, 1, &val, 1); @@ -658,7 +658,10 @@ static inline int twl4030_i2c_read_u8(u8 chip_no, u8 reg, u8 *val) { return i2c_read(chip_no, reg, 1, val, 1); } - +#else +int twl4030_i2c_write_u8(u8 chip_no, u8 reg, u8 val); +int twl4030_i2c_read_u8(u8 chip_no, u8 reg, u8 *val); +#endif /* * Power */