diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2023-02-13 10:24:53 -0600 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-02-14 11:39:08 +0000 |
commit | b7f032d3c911666089a0fc551818a95d07556bf9 (patch) | |
tree | be21e11adb784de90f542e7f2d2bf2610f22bb4e /src/drivers/i2c | |
parent | 88e5d18589babd8c346a82df884fe997d8c947dd (diff) |
drivers/i2c/nau8825: Fix typo: deboune -> debounce
Allows Windows/Linux driver to use the proper jack eject debounce time.
Credit to coolstar for identifying the issue.
Change-Id: I32b94b9285f7c85ff1d67b3d78c845835bbf90d7
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73001
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/drivers/i2c')
-rw-r--r-- | src/drivers/i2c/nau8825/nau8825.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/i2c/nau8825/nau8825.c b/src/drivers/i2c/nau8825/nau8825.c index 76fd8715fb..060df7c775 100644 --- a/src/drivers/i2c/nau8825/nau8825.c +++ b/src/drivers/i2c/nau8825/nau8825.c @@ -67,7 +67,7 @@ static void nau8825_fill_ssdt(const struct device *dev) NAU8825_DP_INT("sar-sampling-time", config->sar_sampling_time); NAU8825_DP_INT("short-key-debounce", config->short_key_debounce); NAU8825_DP_INT("jack-insert-debounce", config->jack_insert_debounce); - NAU8825_DP_INT("jack-eject-deboune", config->jack_eject_debounce); + NAU8825_DP_INT("jack-eject-debounce", config->jack_eject_debounce); NAU8825_DP_INT("sar-threshold-num", config->sar_threshold_num); NAU8825_DP_INT("adcout-drive-strong", config->adcout_ds ? 1 : 0); acpi_dp_add_integer_array(dp, "nuvoton,sar-threshold", |