]> Git Repo - linux.git/commitdiff
pinctrl: mediatek: Export debounce time tables
authorLinus Walleij <[email protected]>
Tue, 15 Nov 2022 08:11:07 +0000 (09:11 +0100)
committerLinus Walleij <[email protected]>
Tue, 15 Nov 2022 08:13:59 +0000 (09:13 +0100)
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: e1ff91f9d230 ("pinctrl: mediatek: Fix EINT pins input debounce time configuration")
Cc: AngeloGioacchino Del Regno <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
drivers/pinctrl/mediatek/mtk-eint.c

index e94ee802c60318f39dd48cf9fdfa2c1d3346fd06..65d3129676193173c8c939e1f566ba92f03d272e 100644 (file)
@@ -52,14 +52,17 @@ static const struct mtk_eint_regs mtk_generic_eint_regs = {
 const unsigned int debounce_time_mt2701[] = {
        500, 1000, 16000, 32000, 64000, 128000, 256000, 0
 };
+EXPORT_SYMBOL_GPL(debounce_time_mt2701);
 
 const unsigned int debounce_time_mt6765[] = {
        125, 250, 500, 1000, 16000, 32000, 64000, 128000, 256000, 512000, 0
 };
+EXPORT_SYMBOL_GPL(debounce_time_mt6765);
 
 const unsigned int debounce_time_mt6795[] = {
        500, 1000, 16000, 32000, 64000, 128000, 256000, 512000, 0
 };
+EXPORT_SYMBOL_GPL(debounce_time_mt6795);
 
 static void __iomem *mtk_eint_get_offset(struct mtk_eint *eint,
                                         unsigned int eint_num,
This page took 0.056369 seconds and 4 git commands to generate.