mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 06:12:08 +00:00
tpm: remove unnecessary sizeof(u8)
sizeof(u8) is always 1. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
This commit is contained in:
parent
84eb186bc3
commit
9fd8e5a25e
@ -635,13 +635,13 @@ tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||
}
|
||||
|
||||
platform_data->tpm_i2c_buffer[0] =
|
||||
kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
|
||||
kmalloc(TPM_BUFSIZE, GFP_KERNEL);
|
||||
if (platform_data->tpm_i2c_buffer[0] == NULL) {
|
||||
err = -ENOMEM;
|
||||
goto _tpm_clean_answer;
|
||||
}
|
||||
platform_data->tpm_i2c_buffer[1] =
|
||||
kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
|
||||
kmalloc(TPM_BUFSIZE, GFP_KERNEL);
|
||||
if (platform_data->tpm_i2c_buffer[1] == NULL) {
|
||||
err = -ENOMEM;
|
||||
goto _tpm_clean_response1;
|
||||
|
Loading…
Reference in New Issue
Block a user