src/drivers/smmstore: Fix SMMSTOREv1 clear command
The `clear` command for SMMSTORE version 1 does not require a parameter. Change-Id: I992b7ce5962bf7ee62b7e1970ae7aa1b975ef42e Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
@@ -143,7 +143,7 @@ static uint32_t smmstorev2_exec(uint8_t command, void *param)
|
|||||||
|
|
||||||
uint32_t smmstore_exec(uint8_t command, void *param)
|
uint32_t smmstore_exec(uint8_t command, void *param)
|
||||||
{
|
{
|
||||||
if (!param)
|
if (command != SMMSTORE_CMD_CLEAR && !param)
|
||||||
return SMMSTORE_RET_FAILURE;
|
return SMMSTORE_RET_FAILURE;
|
||||||
|
|
||||||
if (CONFIG(SMMSTORE_V2))
|
if (CONFIG(SMMSTORE_V2))
|
||||||
|
Reference in New Issue
Block a user