diff options
Diffstat (limited to 'src/soc/mediatek/mt8186/include')
-rw-r--r-- | src/soc/mediatek/mt8186/include/soc/gpio_base.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/soc/mediatek/mt8186/include/soc/gpio_base.h b/src/soc/mediatek/mt8186/include/soc/gpio_base.h deleted file mode 100644 index 7f6480a0f1..0000000000 --- a/src/soc/mediatek/mt8186/include/soc/gpio_base.h +++ /dev/null @@ -1,24 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -/* - * This file is created based on MT8186 Functional Specification - * Chapter number: 5.1 - */ - -#ifndef SOC_MEDIATEK_MT8186_GPIO_BASE_H -#define SOC_MEDIATEK_MT8186_GPIO_BASE_H - -#include <stdint.h> - -typedef union { - u32 raw; - struct { - u32 id : 8; - u32 flag : 3; - u32 bit : 5; - u32 base : 8; - u32 offset : 8; - }; -} gpio_t; - -#endif |