diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:33:47 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:27:34 +0000 |
commit | b0b0c8c60a6072d1b0707f9b9b87650570b35ea3 (patch) | |
tree | fa3f70a9890aa2f45ee15d4c3c99f851c5a74df4 /src/drivers/pc80 | |
parent | 6c9737b1ac5b71f705350a960dee0e68b9afb440 (diff) | |
download | coreboot-b0b0c8c60a6072d1b0707f9b9b87650570b35ea3.tar.xz |
src/{device,drivers}: Use "foo *bar" instead of "foo* bar"
Change-Id: Ic1c9b1edd8d3206a68854107ddcbc5c51cb487c3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27404
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/pc80')
-rw-r--r-- | src/drivers/pc80/tpm/tis.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/pc80/tpm/tis.c b/src/drivers/pc80/tpm/tis.c index 3549173210..495bb4a143 100644 --- a/src/drivers/pc80/tpm/tis.c +++ b/src/drivers/pc80/tpm/tis.c @@ -109,13 +109,13 @@ */ struct device_name { u16 dev_id; - const char * const dev_name; + const char *const dev_name; }; struct vendor_name { u16 vendor_id; - const char * vendor_name; - const struct device_name* dev_names; + const char *vendor_name; + const struct device_name *dev_names; }; static const struct device_name atmel_devices[] = { @@ -443,7 +443,7 @@ static u32 tis_probe(void) * Returns 0 on success, TPM_DRIVER_ERR on error (in case the device does * not accept the entire command). */ -static u32 tis_senddata(const u8 * const data, u32 len) +static u32 tis_senddata(const u8 *const data, u32 len) { u32 offset = 0; u16 burst = 0; |