src/drivers: Remove unnecessary space after casts
Change-Id: I16689da893b5a0c3254364759d435281cb3e1caf Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69803 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -63,7 +63,7 @@ static int ptn3460_write_edid(struct device *dev, u8 edid_num, u8 *data)
|
||||
static void ptn3460_init(struct device *dev)
|
||||
{
|
||||
struct ptn_3460_config cfg;
|
||||
uint8_t edid_data[PTN_EDID_LEN], edid_tab, *ptr = (uint8_t *) &cfg;
|
||||
uint8_t edid_data[PTN_EDID_LEN], edid_tab, *ptr = (uint8_t *)&cfg;
|
||||
int i, val;
|
||||
|
||||
/* Guard against re-initialization of the device */
|
||||
@@ -108,7 +108,7 @@ static void ptn3460_init(struct device *dev)
|
||||
/* Mainboard can modify the configuration data.
|
||||
Write back configuration data to PTN3460 if modified by mainboard */
|
||||
if (mb_adjust_cfg(&cfg) == PTN_CFG_MODIFIED) {
|
||||
ptr = (uint8_t *) &cfg;
|
||||
ptr = (uint8_t *)&cfg;
|
||||
for (i = 0; i < sizeof(struct ptn_3460_config); i++) {
|
||||
val = i2c_dev_writeb_at(dev, PTN_CONFIG_OFF + i, *ptr++);
|
||||
if (val < 0) {
|
||||
|
@@ -78,7 +78,7 @@ static ssize_t tpm_transmit(const uint8_t *sbuf, size_t sbufsiz, void *rbuf,
|
||||
}
|
||||
|
||||
ASSERT(chip.vendor.send);
|
||||
rc = chip.vendor.send(&chip, (uint8_t *) sbuf, count);
|
||||
rc = chip.vendor.send(&chip, (uint8_t *)sbuf, count);
|
||||
if (rc < 0) {
|
||||
printk(BIOS_DEBUG, "%s: tpm_send error\n", __func__);
|
||||
goto out;
|
||||
@@ -111,7 +111,7 @@ static ssize_t tpm_transmit(const uint8_t *sbuf, size_t sbufsiz, void *rbuf,
|
||||
|
||||
out_recv:
|
||||
|
||||
rc = chip.vendor.recv(&chip, (uint8_t *) rbuf, rbufsiz);
|
||||
rc = chip.vendor.recv(&chip, (uint8_t *)rbuf, rbufsiz);
|
||||
if (rc < 0)
|
||||
printk(BIOS_DEBUG, "%s: tpm_recv: error %d\n", __func__, rc);
|
||||
out:
|
||||
|
Reference in New Issue
Block a user