Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1570973
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] tpm: fix type errors in tpm_tis_spi.c |
| Date | 2017-01-31 19:30 +0100 |
| Message-ID | <t5LlL-41b-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
In these functions u16 or u32 was used as __le16 or __le32:
- tpm_tis_spi_read16
- tpm_tis_spi_read32
- tpm_tis_spi_write32
Fixes: 0edbfea537d1 ("tpm/tpm_tis_spi: Add support for spi phy")
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
---
drivers/char/tpm/tpm_tis_spi.c | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/drivers/char/tpm/tpm_tis_spi.c b/drivers/char/tpm/tpm_tis_spi.c
index 5292e57..d3b0b30 100644
--- a/drivers/char/tpm/tpm_tis_spi.c
+++ b/drivers/char/tpm/tpm_tis_spi.c
@@ -174,29 +174,32 @@ static int tpm_tis_spi_write_bytes(struct tpm_tis_data *data, u32 addr,
static int tpm_tis_spi_read16(struct tpm_tis_data *data, u32 addr, u16 *result)
{
+ __le16 tmp;
int rc;
- rc = data->phy_ops->read_bytes(data, addr, sizeof(u16), (u8 *)result);
+ rc = data->phy_ops->read_bytes(data, addr, sizeof(u16), (u8 *)&tmp);
if (!rc)
- *result = le16_to_cpu(*result);
+ *result = le16_to_cpu(tmp);
return rc;
}
static int tpm_tis_spi_read32(struct tpm_tis_data *data, u32 addr, u32 *result)
{
+ __le32 tmp;
int rc;
- rc = data->phy_ops->read_bytes(data, addr, sizeof(u32), (u8 *)result);
+ rc = data->phy_ops->read_bytes(data, addr, sizeof(u32), (u8 *)&tmp);
if (!rc)
- *result = le32_to_cpu(*result);
+ *result = le32_to_cpu(tmp);
return rc;
}
static int tpm_tis_spi_write32(struct tpm_tis_data *data, u32 addr, u32 value)
{
- value = cpu_to_le32(value);
- return data->phy_ops->write_bytes(data, addr, sizeof(u32),
- (u8 *)&value);
+ __le32 tmp;
+
+ tmp = cpu_to_le32(value);
+ return data->phy_ops->write_bytes(data, addr, sizeof(u32), (u8 *)&tmp);
}
static const struct tpm_tis_phy_ops tpm_spi_phy_ops = {
--
2.9.3
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] tpm: fix type errors in tpm_tis_spi.c Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-01-31 19:30 +0100
csiph-web