Skip to content

Commit 2e35b25

Browse files
author
Linus Walleij
committed
pinctrl: mediatek: Export debounce time tables
The kernel test robot complains that in certain combinations when building the Mediatek drivers as modules we lack some debounce table symbols, so export them. Reported-by: kernel test robot <[email protected]> Fixes: e1ff91f ("pinctrl: mediatek: Fix EINT pins input debounce time configuration") Cc: AngeloGioacchino Del Regno <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent e1ff91f commit 2e35b25

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/pinctrl/mediatek/mtk-eint.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,17 @@ static const struct mtk_eint_regs mtk_generic_eint_regs = {
5252
const unsigned int debounce_time_mt2701[] = {
5353
500, 1000, 16000, 32000, 64000, 128000, 256000, 0
5454
};
55+
EXPORT_SYMBOL_GPL(debounce_time_mt2701);
5556

5657
const unsigned int debounce_time_mt6765[] = {
5758
125, 250, 500, 1000, 16000, 32000, 64000, 128000, 256000, 512000, 0
5859
};
60+
EXPORT_SYMBOL_GPL(debounce_time_mt6765);
5961

6062
const unsigned int debounce_time_mt6795[] = {
6163
500, 1000, 16000, 32000, 64000, 128000, 256000, 512000, 0
6264
};
65+
EXPORT_SYMBOL_GPL(debounce_time_mt6795);
6366

6467
static void __iomem *mtk_eint_get_offset(struct mtk_eint *eint,
6568
unsigned int eint_num,

0 commit comments

Comments
 (0)