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:
Tim Crawford
2021-01-19 12:29:21 -07:00
parent 7ae73fcd9a
commit 53ff179883

View File

@@ -143,7 +143,7 @@ static uint32_t smmstorev2_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;
if (CONFIG(SMMSTORE_V2))