diff mbox series

[3/6] drivers: tpm: atmel_twi: drop non-DM_I2C compatibility

Message ID 20211104011253.4401-4-matt@traverse.com.au
State Superseded
Delegated to: Eugen Hristev
Headers show
Series Fix Atmel/Microchip TPMv1.2 issues | expand

Commit Message

Mathew McBride Nov. 4, 2021, 1:12 a.m. UTC
There are no users of this driver without DM_I2C

Signed-off-by: Mathew McBride <matt@traverse.com.au>
---
 drivers/tpm/tpm_atmel_twi.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

Comments

Ilias Apalodimas Nov. 4, 2021, 7:10 a.m. UTC | #1
On Thu, 4 Nov 2021 at 03:14, Mathew McBride <matt@traverse.com.au> wrote:
>
> There are no users of this driver without DM_I2C
>
> Signed-off-by: Mathew McBride <matt@traverse.com.au>
> ---
>  drivers/tpm/tpm_atmel_twi.c | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/tpm/tpm_atmel_twi.c b/drivers/tpm/tpm_atmel_twi.c
> index 2dcc2af67f..4ff4cf4cd4 100644
> --- a/drivers/tpm/tpm_atmel_twi.c
> +++ b/drivers/tpm/tpm_atmel_twi.c
> @@ -81,22 +81,15 @@ static int tpm_atmel_twi_xfer(struct udevice *dev,
>         print_buffer(0, (void *)sendbuf, 1, send_size, 0);
>  #endif
>
> -#if !CONFIG_IS_ENABLED(DM_I2C)
> -       res = i2c_write(0x29, 0, 0, (uchar *)sendbuf, send_size);
> -#else
>         res = dm_i2c_write(dev, 0, sendbuf, send_size);
> -#endif
>         if (res) {
>                 printf("i2c_write returned %d\n", res);
>                 return -1;
>         }
>
>         start = get_timer(0);
> -#if !CONFIG_IS_ENABLED(DM_I2C)
> -       while ((res = i2c_read(0x29, 0, 0, recvbuf, 10)))
> -#else
> +
>         while ((res = dm_i2c_read(dev, 0, recvbuf, 10)))
> -#endif
>         {
>                 /* TODO Use TIS_TIMEOUT from tpm_tis_infineon.h */
>                 if (get_timer(start) > ATMEL_TPM_TIMEOUT_MS) {
> @@ -116,12 +109,7 @@ static int tpm_atmel_twi_xfer(struct udevice *dev,
>                         return -1;
>                 } else {
>                         *recv_len = hdr_recv_len;
> -#if !CONFIG_IS_ENABLED(DM_I2C)
> -                       res = i2c_read(0x29, 0, 0, recvbuf, *recv_len);
> -#else
>                         res = dm_i2c_read(dev, 0, recvbuf, *recv_len);
> -#endif
> -
>                 }
>         }
>         if (res) {
> --
> 2.30.1
>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
diff mbox series

Patch

diff --git a/drivers/tpm/tpm_atmel_twi.c b/drivers/tpm/tpm_atmel_twi.c
index 2dcc2af67f..4ff4cf4cd4 100644
--- a/drivers/tpm/tpm_atmel_twi.c
+++ b/drivers/tpm/tpm_atmel_twi.c
@@ -81,22 +81,15 @@  static int tpm_atmel_twi_xfer(struct udevice *dev,
 	print_buffer(0, (void *)sendbuf, 1, send_size, 0);
 #endif
 
-#if !CONFIG_IS_ENABLED(DM_I2C)
-	res = i2c_write(0x29, 0, 0, (uchar *)sendbuf, send_size);
-#else
 	res = dm_i2c_write(dev, 0, sendbuf, send_size);
-#endif
 	if (res) {
 		printf("i2c_write returned %d\n", res);
 		return -1;
 	}
 
 	start = get_timer(0);
-#if !CONFIG_IS_ENABLED(DM_I2C)
-	while ((res = i2c_read(0x29, 0, 0, recvbuf, 10)))
-#else
+
 	while ((res = dm_i2c_read(dev, 0, recvbuf, 10)))
-#endif
 	{
 		/* TODO Use TIS_TIMEOUT from tpm_tis_infineon.h */
 		if (get_timer(start) > ATMEL_TPM_TIMEOUT_MS) {
@@ -116,12 +109,7 @@  static int tpm_atmel_twi_xfer(struct udevice *dev,
 			return -1;
 		} else {
 			*recv_len = hdr_recv_len;
-#if !CONFIG_IS_ENABLED(DM_I2C)
-			res = i2c_read(0x29, 0, 0, recvbuf, *recv_len);
-#else
 			res = dm_i2c_read(dev, 0, recvbuf, *recv_len);
-#endif
-
 		}
 	}
 	if (res) {