mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
724368928c
This converts Intel ICH6 GPIO driver to Kconfig, and add it to the imply list of platform drivers. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
23 lines
403 B
C
23 lines
403 B
C
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/x86-common.h>
|
|
|
|
#undef CONFIG_CMD_SF_TEST
|
|
|
|
#undef CONFIG_TPM_TIS_BASE_ADDRESS
|
|
|
|
#undef CONFIG_SCSI_AHCI
|
|
#undef CONFIG_USB_EHCI_PCI
|
|
|
|
#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,vga,serial\0" \
|
|
"stdout=vga,serial\0" \
|
|
"stderr=vga,serial\0"
|
|
|
|
#endif
|