Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: npcm-fiu: Fix typo ("npxm")

The platform is called NPCM, not NPXM.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Link: https://lore.kernel.org/r/20220306142312.109017-1-j.neuschaefer@gmx.net
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Jonathan Neuschäfer and committed by
Mark Brown
b15e3bc7 320689a1

+4 -4
+4 -4
drivers/spi/spi-npcm-fiu.c
··· 201 201 int fiu_max; 202 202 }; 203 203 204 - static const struct npcm_fiu_info npxm7xx_fiu_info[] = { 204 + static const struct npcm_fiu_info npcm7xx_fiu_info[] = { 205 205 {.name = "FIU0", .fiu_id = FIU0, 206 206 .max_map_size = MAP_SIZE_128MB, .max_cs = 2}, 207 207 {.name = "FIU3", .fiu_id = FIU3, ··· 209 209 {.name = "FIUX", .fiu_id = FIUX, 210 210 .max_map_size = MAP_SIZE_16MB, .max_cs = 2} }; 211 211 212 - static const struct fiu_data npxm7xx_fiu_data = { 213 - .npcm_fiu_data_info = npxm7xx_fiu_info, 212 + static const struct fiu_data npcm7xx_fiu_data = { 213 + .npcm_fiu_data_info = npcm7xx_fiu_info, 214 214 .fiu_max = 3, 215 215 }; 216 216 ··· 664 664 }; 665 665 666 666 static const struct of_device_id npcm_fiu_dt_ids[] = { 667 - { .compatible = "nuvoton,npcm750-fiu", .data = &npxm7xx_fiu_data }, 667 + { .compatible = "nuvoton,npcm750-fiu", .data = &npcm7xx_fiu_data }, 668 668 { /* sentinel */ } 669 669 }; 670 670