src/mediatek: Move mt8192 eint driver to common
The eint driver can be shared by multiple platforms so we want to move it to common/. BRANCH=asurada TEST=emerge-asurada coreboot Signed-off-by: Yidi Lin <yidi.lin@mediatek.com> Change-Id: Id8e0b631d5079e51213831ed17aa540e0afadd4b Reviewed-on: https://review.coreboot.org/c/coreboot/+/52506 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
This commit is contained in:
parent
e5d3b4e36e
commit
ab686715f2
|
@ -1,7 +1,7 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
#ifndef SOC_MEDIATEK_MT8192_EINT_EVENT_H
|
#ifndef SOC_MEDIATEK_COMMON_EINT_EVENT_H
|
||||||
#define SOC_MEDIATEK_MT8192_EINT_EVENT_H
|
#define SOC_MEDIATEK_COMMON_EINT_EVENT_H
|
||||||
|
|
||||||
#include <device/mmio.h>
|
#include <device/mmio.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
|
@ -2,7 +2,7 @@ ifeq ($(CONFIG_SOC_MEDIATEK_MT8192),y)
|
||||||
|
|
||||||
bootblock-y += ../common/auxadc.c
|
bootblock-y += ../common/auxadc.c
|
||||||
bootblock-y += bootblock.c
|
bootblock-y += bootblock.c
|
||||||
bootblock-y += eint_event.c
|
bootblock-y += ../common/eint_event.c
|
||||||
bootblock-y += ../common/flash_controller.c
|
bootblock-y += ../common/flash_controller.c
|
||||||
bootblock-y += ../common/gpio.c gpio.c
|
bootblock-y += ../common/gpio.c gpio.c
|
||||||
bootblock-y += ../common/i2c.c i2c.c
|
bootblock-y += ../common/i2c.c i2c.c
|
||||||
|
|
Loading…
Reference in New Issue