drivers/i2c/tpm: Fix blank default statement

CB:59479 introduced a blank default statement. This is treated as an
error or warning on some older toolchains. Add a break statement on
default case.

BUG=None
TEST=Build the Guybrush mainboard.

Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Change-Id: I3d034cfebc8b8ae7d7024d41b4b2207cdeb083e8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59551
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Patrick Georgi <patrick@coreboot.org>
Reviewed-by: Rob Barnes <robbarnes@google.com>
This commit is contained in:
Karthikeyan Ramasubramanian 2021-11-22 15:04:15 -07:00 committed by Patrick Georgi
parent 8e0bfe263c
commit fd6c8d607e
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ static void i2c_tpm_fill_ssdt(const struct device *dev)
case TPM_DEFAULT_POWER_MANAGED: case TPM_DEFAULT_POWER_MANAGED:
default: default:
/* Leave firmware-power-managed unset */ /* Leave firmware-power-managed unset */
break;
} }
acpi_dp_write(dsd); acpi_dp_write(dsd);