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

mfd: ti: Constify struct mfd_cell where possible

As of commit 03e361b25ee8dfb1fd9b890072c23c4aae01c6c7 ("mfd: Stop setting
refcounting pointers in original mfd_cell arrays"), the "cell" parameter of
mfd_add_devices() is "const" again. Hence make all cell data passed to
mfd_add_devices() const where possible.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

Geert Uytterhoeven and committed by
Lee Jones
30fe2b5b 5ac98553

+7 -7
+1 -1
drivers/mfd/tps6507x.c
··· 24 24 #include <linux/mfd/core.h> 25 25 #include <linux/mfd/tps6507x.h> 26 26 27 - static struct mfd_cell tps6507x_devs[] = { 27 + static const struct mfd_cell tps6507x_devs[] = { 28 28 { 29 29 .name = "tps6507x-pmic", 30 30 },
+1 -1
drivers/mfd/tps65090.c
··· 64 64 } 65 65 }; 66 66 67 - static struct mfd_cell tps65090s[] = { 67 + static const struct mfd_cell tps65090s[] = { 68 68 { 69 69 .name = "tps65090-pmic", 70 70 },
+1 -1
drivers/mfd/tps65217.c
··· 30 30 #include <linux/mfd/core.h> 31 31 #include <linux/mfd/tps65217.h> 32 32 33 - static struct mfd_cell tps65217s[] = { 33 + static const struct mfd_cell tps65217s[] = { 34 34 { 35 35 .name = "tps65217-pmic", 36 36 },
+1 -1
drivers/mfd/tps6586x.c
··· 103 103 }, 104 104 }; 105 105 106 - static struct mfd_cell tps6586x_cell[] = { 106 + static const struct mfd_cell tps6586x_cell[] = { 107 107 { 108 108 .name = "tps6586x-gpio", 109 109 },
+1 -1
drivers/mfd/tps65910.c
··· 36 36 } 37 37 }; 38 38 39 - static struct mfd_cell tps65910s[] = { 39 + static const struct mfd_cell tps65910s[] = { 40 40 { 41 41 .name = "tps65910-gpio", 42 42 },
+1 -1
drivers/mfd/tps65912-core.c
··· 21 21 #include <linux/mfd/core.h> 22 22 #include <linux/mfd/tps65912.h> 23 23 24 - static struct mfd_cell tps65912s[] = { 24 + static const struct mfd_cell tps65912s[] = { 25 25 { 26 26 .name = "tps65912-pmic", 27 27 },
+1 -1
drivers/mfd/tps80031.c
··· 44 44 }; 45 45 46 46 /* TPS80031 sub mfd devices */ 47 - static struct mfd_cell tps80031_cell[] = { 47 + static const struct mfd_cell tps80031_cell[] = { 48 48 { 49 49 .name = "tps80031-pmic", 50 50 },