From: Damien Le Moal Date: Thu, 23 Mar 2023 03:28:54 +0000 (+0900) Subject: ata: pata_parport-bpck6: Declare mode_map as static X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=140b26035b2d379d94e6e3936ab2e0adf94efe46;p=linux.git ata: pata_parport-bpck6: Declare mode_map as static Compilation C=1 of the bpck6 protocol module generates the following message: drivers/ata/pata_parport/bpck6.c:62:5: warning: symbol 'mode_map' was not declared. Should it be static? Fix this by declaring mode_map as static. Signed-off-by: Damien Le Moal Reviewed-by: Ondrej Zary --- diff --git a/drivers/ata/pata_parport/bpck6.c b/drivers/ata/pata_parport/bpck6.c index 295dbe5cdaa44..76febd07a9bb4 100644 --- a/drivers/ata/pata_parport/bpck6.c +++ b/drivers/ata/pata_parport/bpck6.c @@ -59,8 +59,8 @@ #define PPCMODE_EPP_WORD 5 #define PPCMODE_EPP_DWORD 6 -int mode_map[] = { PPCMODE_UNI_FW, PPCMODE_BI_FW, PPCMODE_EPP_BYTE, - PPCMODE_EPP_WORD, PPCMODE_EPP_DWORD }; +static int mode_map[] = { PPCMODE_UNI_FW, PPCMODE_BI_FW, PPCMODE_EPP_BYTE, + PPCMODE_EPP_WORD, PPCMODE_EPP_DWORD }; static void bpck6_send_cmd(struct pi_adapter *pi, u8 cmd) {