ARM: s3c: Rename s3c64xx_spi_setname() function
authorKrzysztof Kozlowski <krzk@kernel.org>
Wed, 23 Oct 2019 15:38:23 +0000 (17:38 +0200)
committerKrzysztof Kozlowski <krzk@kernel.org>
Mon, 28 Oct 2019 16:46:57 +0000 (17:46 +0100)
The name s3c64xx_spi_setname() suggests it is shared with S3C64xx
platform, but except of contents it is not.  It is called only by
S3C24xx code, so make it clear in the name.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
arch/arm/mach-s3c24xx/s3c2416.c
arch/arm/mach-s3c24xx/s3c2443.c
arch/arm/mach-s3c24xx/spi-core.h

index 1cdb7bd..9514196 100644 (file)
@@ -113,7 +113,7 @@ void __init s3c2416_map_io(void)
        /* initialize device information early */
        s3c2416_default_sdhci0();
        s3c2416_default_sdhci1();
-       s3c64xx_spi_setname("s3c2443-spi");
+       s3c24xx_spi_setname("s3c2443-spi");
 
        iotable_init(s3c2416_iodesc, ARRAY_SIZE(s3c2416_iodesc));
 }
index 313e369..4cbeb74 100644 (file)
@@ -91,7 +91,7 @@ void __init s3c2443_map_io(void)
        s3c24xx_gpiocfg_default.get_pull = s3c2443_gpio_getpull;
 
        /* initialize device information early */
-       s3c64xx_spi_setname("s3c2443-spi");
+       s3c24xx_spi_setname("s3c2443-spi");
 
        iotable_init(s3c2443_iodesc, ARRAY_SIZE(s3c2443_iodesc));
 }
index bb555cc..1048fac 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 /* re-define device name depending on support. */
-static inline void s3c64xx_spi_setname(char *name)
+static inline void s3c24xx_spi_setname(char *name)
 {
 #ifdef CONFIG_S3C64XX_DEV_SPI0
        s3c64xx_device_spi0.name = name;