diff options
author | johnwc_yeh <johnwc_yeh@compal.corp-partner.google.com> | 2022-05-09 11:18:32 +0800 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2022-05-12 09:04:44 +0000 |
commit | e0b1b73469d097591a154fa6c5e1b0117c27651b (patch) | |
tree | 402fa345ae513afe7fefcb5b2e0df4270f7b45c2 /board/mithrax/keyboard.c | |
parent | e85c5bab8282346ef8ec0d9a4c480be3e0e8780f (diff) | |
download | chrome-ec-e0b1b73469d097591a154fa6c5e1b0117c27651b.tar.gz |
mithrax: felwinter renamed to mithrax
Felwinter renamed to mithrax.
BUG=b:223091246
BRANCH=None
TEST=make BOARD=mithrax
Signed-off-by: johnwc_yeh <johnwc_yeh@compal.corp-partner.google.com>
Change-Id: Ibfa865d2309cc44a6f1af1d2f7d8e90eca30c8b5
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3631726
Reviewed-by: Ko Ko <ko_ko@compal.corp-partner.google.com>
Reviewed-by: Ricky Chang <rickytlchang@chromium.org>
Diffstat (limited to 'board/mithrax/keyboard.c')
-rw-r--r-- | board/mithrax/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/mithrax/keyboard.c b/board/mithrax/keyboard.c index a8cbf72238..f07b2dda17 100644 --- a/board/mithrax/keyboard.c +++ b/board/mithrax/keyboard.c @@ -1,4 +1,4 @@ -/* Copyright 2021 The Chromium OS Authors. All rights reserved. +/* Copyright 2022 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ @@ -24,7 +24,7 @@ __override struct keyboard_scan_config keyscan_config = { }, }; -static const struct ec_response_keybd_config felwinter_kb = { +static const struct ec_response_keybd_config mithrax_kb = { .num_top_row_keys = 10, .action_keys = { TK_BACK, /* T1 */ @@ -44,5 +44,5 @@ static const struct ec_response_keybd_config felwinter_kb = { __override const struct ec_response_keybd_config *board_vivaldi_keybd_config(void) { - return &felwinter_kb; + return &mithrax_kb; } |