ec/google/chromeec: Remove keyboard initialization
Since none of the boards using chromeec select DRIVERS_PS2_KEYBOARD now, there is no need to call pc_keyboard_init anymore. This change gets rid of the call and adds an error message in case any mainboard using chromeec tries to select this config. BUG=b:110024487 Change-Id: Ia0b56abe0a5990e527277eaf3397e00dccda3e50 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/27293 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
26475572a7
commit
9efe426cc4
|
@ -18,7 +18,6 @@
|
|||
#include <console/console.h>
|
||||
#include <delay.h>
|
||||
#include <device/pnp.h>
|
||||
#include <pc80/keyboard.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -430,7 +429,6 @@ static void lpc_ec_init(struct device *dev)
|
|||
if (!dev->enabled)
|
||||
return;
|
||||
|
||||
pc_keyboard_init(NO_AUX_DEVICE);
|
||||
google_chromeec_init();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue