diff mbox series

[06/42] imx: imx8_cpu: use static for local functions

Message ID 20230428040847.10841-7-peng.fan@oss.nxp.com
State Accepted
Commit 3621efa7cd572719e37007f22fb4d6e5baa5919e
Delegated to: Stefano Babic
Headers show
Series imx: i.MX9 update | expand

Commit Message

Peng Fan (OSS) April 28, 2023, 4:08 a.m. UTC
From: Peng Fan <peng.fan@nxp.com>

For local functions, use static for function.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
 drivers/cpu/imx8_cpu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Stefano Babic May 21, 2023, 5:09 p.m. UTC | #1
> From: Peng Fan <peng.fan@nxp.com>
> For local functions, use static for function.
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c
index dc060513b38..e7f45e60dbd 100644
--- a/drivers/cpu/imx8_cpu.c
+++ b/drivers/cpu/imx8_cpu.c
@@ -27,7 +27,7 @@  struct cpu_imx_plat {
 	u32 mpidr;
 };
 
-const char *get_imx8_type(u32 imxtype)
+static const char *get_imx8_type(u32 imxtype)
 {
 	switch (imxtype) {
 	case MXC_CPU_IMX8QXP:
@@ -40,7 +40,7 @@  const char *get_imx8_type(u32 imxtype)
 	}
 }
 
-const char *get_imx8_rev(u32 rev)
+static const char *get_imx8_rev(u32 rev)
 {
 	switch (rev) {
 	case CHIP_REV_A:
@@ -101,7 +101,7 @@  static int cpu_imx_get_temp(struct cpu_imx_plat *plat)
 }
 #endif
 
-int cpu_imx_get_desc(const struct udevice *dev, char *buf, int size)
+static int cpu_imx_get_desc(const struct udevice *dev, char *buf, int size)
 {
 	struct cpu_imx_plat *plat = dev_get_plat(dev);
 	int ret, temp;