From 330293d53543cd9af5fbf85fb031f83a940b6d59 Mon Sep 17 00:00:00 2001 From: Daisuke Nojiri Date: Wed, 21 Jul 2021 10:05:07 -0700 Subject: keyboard: Use __override for keyboard_scan_config Currently keyboard_scan_config is defined by each board using CONFIG_KEYBOARD_BOARD_CONFIG. This patch makes it defined as __override hence removes CONFIG_KEYBOARD_BOARD_CONFIG. BUG=None BRANCH=None TEST=buildall Change-Id: I53a356741ba4d00e829ca59b74ee6dc704188728 Signed-off-by: Daisuke Nojiri Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3044403 Tested-by: Gwendal Grignou Commit-Queue: Gwendal Grignou Reviewed-by: Gwendal Grignou --- board/damu/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/damu') diff --git a/board/damu/board.c b/board/damu/board.c index 38f354d251..c45d4e37a8 100644 --- a/board/damu/board.c +++ b/board/damu/board.c @@ -88,7 +88,7 @@ const struct power_signal_info power_signal_list[] = { BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT); /* Keyboard scan setting */ -struct keyboard_scan_config keyscan_config = { +__override struct keyboard_scan_config keyscan_config = { /* * TODO(b/133200075): Tune this once we have the final performance * out of the driver and the i2c bus. -- cgit v1.2.1