diff options
| author | Bin Meng <[email protected]> | 2023-04-05 22:38:37 +0800 |
|---|---|---|
| committer | Dario Binacchi <[email protected]> | 2023-04-16 12:30:46 +0200 |
| commit | 982e28be1d857e32263c95e367e29f24095be9e0 (patch) | |
| tree | 78273c3f7c9c0d5190609054af766ccbd36e1e34 | |
| parent | eb3a6e32837a099ae63c0afe7fa465a31f5c3c43 (diff) | |
nand: raw: octeontx: Make list static
octeontx_bch_devices and octeontx_pci_nand_deferred_devices are only
referenced in the files where they are defined. Make them static.
Signed-off-by: Bin Meng <[email protected]>
Acked-by: Michael Trimarchi <[email protected]>
Link: https://lore.kernel.org/all/[email protected]/
Signed-off-by: Dario Binacchi <[email protected]>
| -rw-r--r-- | drivers/mtd/nand/raw/octeontx_bch.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/nand/raw/octeontx_nand.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/raw/octeontx_bch.c b/drivers/mtd/nand/raw/octeontx_bch.c index fc16b77416b..056a6857822 100644 --- a/drivers/mtd/nand/raw/octeontx_bch.c +++ b/drivers/mtd/nand/raw/octeontx_bch.c @@ -27,7 +27,7 @@ #include <asm/arch/clock.h> #include "octeontx_bch.h" -LIST_HEAD(octeontx_bch_devices); +static LIST_HEAD(octeontx_bch_devices); static unsigned int num_vfs = BCH_NR_VF; static void *bch_pf; static void *bch_vf; diff --git a/drivers/mtd/nand/raw/octeontx_nand.c b/drivers/mtd/nand/raw/octeontx_nand.c index 1ffadad9cae..65a03d22c1d 100644 --- a/drivers/mtd/nand/raw/octeontx_nand.c +++ b/drivers/mtd/nand/raw/octeontx_nand.c @@ -354,7 +354,7 @@ struct octeontx_probe_device { static struct bch_vf *bch_vf; /** Deferred devices due to BCH not being ready */ -LIST_HEAD(octeontx_pci_nand_deferred_devices); +static LIST_HEAD(octeontx_pci_nand_deferred_devices); /** default parameters used for probing chips */ #define MAX_ONFI_MODE 5 |
