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

regulator: vexpress: rename vexpress regulator implementation

The vexpress regulator implementation is currently just called vexpress.
This is a problem because it clashes with another module with the same
name in hardware monitors.

This patch renames the vexpress regulator implementation to
vexpress-regulator so that there will be no clash in the module namespace.

Cc: Liviu Dudau <liviu.dudau@arm.com>
Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Reported-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Sudeep Holla and committed by
Mark Brown
935514c9 92e963f5

+1 -1
+1 -1
drivers/regulator/Makefile
··· 98 98 obj-$(CONFIG_REGULATOR_TPS65912) += tps65912-regulator.o 99 99 obj-$(CONFIG_REGULATOR_TPS80031) += tps80031-regulator.o 100 100 obj-$(CONFIG_REGULATOR_TWL4030) += twl-regulator.o 101 - obj-$(CONFIG_REGULATOR_VEXPRESS) += vexpress.o 101 + obj-$(CONFIG_REGULATOR_VEXPRESS) += vexpress-regulator.o 102 102 obj-$(CONFIG_REGULATOR_WM831X) += wm831x-dcdc.o 103 103 obj-$(CONFIG_REGULATOR_WM831X) += wm831x-isink.o 104 104 obj-$(CONFIG_REGULATOR_WM831X) += wm831x-ldo.o
drivers/regulator/vexpress.c drivers/regulator/vexpress-regulator.c