security: Remove unnecessary space after casts
Change-Id: Ibd41382d0e0ef58498ac925dc9e10b54a76a798a Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69800 Reviewed-by: Yu-Ping Wu <yupingso@google.com> 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:
parent
f903ef1d5f
commit
b538d71e32
@ -85,7 +85,7 @@ void setup_smm_descriptor(void *smbase, int32_t apic_id, int32_t entry32_off)
|
||||
|
||||
TXT_PROCESSOR_SMM_DESCRIPTOR *psd;
|
||||
|
||||
smbase_processor = (void *) SMM_DEFAULT_BASE;//we are here
|
||||
smbase_processor = (void *)SMM_DEFAULT_BASE;//we are here
|
||||
psd = smbase + SMM_PSD_OFFSET;
|
||||
|
||||
printk(BIOS_DEBUG,
|
||||
@ -121,8 +121,8 @@ void setup_smm_descriptor(void *smbase, int32_t apic_id, int32_t entry32_off)
|
||||
|
||||
read_gdtr(&gdtr);
|
||||
|
||||
gdtr.base -= (uintptr_t) smbase_processor;
|
||||
gdtr.base += (uintptr_t) smbase;
|
||||
gdtr.base -= (uintptr_t)smbase_processor;
|
||||
gdtr.base += (uintptr_t)smbase;
|
||||
|
||||
psd->smm_gdt_ptr = gdtr.base;
|
||||
psd->smm_gdt_size = gdtr.limit + 1; // the stm will subtract, so add
|
||||
@ -159,7 +159,7 @@ void stm_setup(uintptr_t mseg, int cpu, uintptr_t smbase,
|
||||
// some processor to receive a bad value
|
||||
// calculate the location in SMRAM
|
||||
addr_calc = mseg - CONFIG_BIOS_RESOURCE_LIST_SIZE;
|
||||
stm_resource_heap = (uint8_t *) addr_calc;
|
||||
stm_resource_heap = (uint8_t *)addr_calc;
|
||||
|
||||
if (cpu == 0) {
|
||||
|
||||
|
@ -51,7 +51,7 @@ static inline int tpm_command_size(const uint8_t *buffer)
|
||||
{
|
||||
uint32_t size;
|
||||
from_tpm_uint32(buffer + sizeof(uint16_t), &size);
|
||||
return (int) size;
|
||||
return (int)size;
|
||||
}
|
||||
|
||||
/* Gets the code field of a TPM command. */
|
||||
|
@ -21,13 +21,13 @@
|
||||
#define TPM_NV_PER_READ_STCLEAR (((uint32_t)1)<<31)
|
||||
#define TPM_NV_PER_WRITE_STCLEAR (((uint32_t)1)<<14)
|
||||
|
||||
#define TPM_TAG_RQU_COMMAND ((uint16_t) 0xc1)
|
||||
#define TPM_TAG_RQU_AUTH1_COMMAND ((uint16_t) 0xc2)
|
||||
#define TPM_TAG_RQU_AUTH2_COMMAND ((uint16_t) 0xc3)
|
||||
#define TPM_TAG_RQU_COMMAND ((uint16_t)0xc1)
|
||||
#define TPM_TAG_RQU_AUTH1_COMMAND ((uint16_t)0xc2)
|
||||
#define TPM_TAG_RQU_AUTH2_COMMAND ((uint16_t)0xc3)
|
||||
|
||||
#define TPM_TAG_RSP_COMMAND ((uint16_t) 0xc4)
|
||||
#define TPM_TAG_RSP_AUTH1_COMMAND ((uint16_t) 0xc5)
|
||||
#define TPM_TAG_RSP_AUTH2_COMMAND ((uint16_t) 0xc6)
|
||||
#define TPM_TAG_RSP_COMMAND ((uint16_t)0xc4)
|
||||
#define TPM_TAG_RSP_AUTH1_COMMAND ((uint16_t)0xc5)
|
||||
#define TPM_TAG_RSP_AUTH2_COMMAND ((uint16_t)0xc6)
|
||||
|
||||
typedef uint8_t TSS_BOOL;
|
||||
typedef uint16_t TPM_STRUCTURE_TAG;
|
||||
|
@ -24,7 +24,7 @@ static uint8_t crc8_vbnv(const uint8_t *data, int len)
|
||||
}
|
||||
}
|
||||
|
||||
return (uint8_t) (crc >> 8);
|
||||
return (uint8_t)(crc >> 8);
|
||||
}
|
||||
|
||||
void vbnv_reset(uint8_t *vbnv_copy)
|
||||
|
Loading…
x
Reference in New Issue
Block a user