Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e005935 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Samuel Ortiz
Browse files

mfd: Add mc13892 support to mc13xxx



mc13892 is the companion PMIC for Freescale's i.MX51.  It's similar enough
to mc13782 to support it in a single driver.

This patch introduces enough compatibility cruft to keep all users of the
superseded mc13783 driver unchanged.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent b4e017e3
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -409,11 +409,16 @@ config MFD_PCF50633
	  so that function-specific drivers can bind to them.

config MFD_MC13783
	tristate "Support Freescale MC13783"
	tristate

config MFD_MC13XXX
	tristate "Support Freescale MC13783 and MC13892"
	depends on SPI_MASTER
	select MFD_CORE
	select MFD_MC13783
	help
	  Support for the Freescale (Atlas) MC13783 PMIC and audio CODEC.
	  Support for the Freescale (Atlas) PMIC and audio CODECs
	  MC13783 and MC13892.
	  This driver provides common support for accessing  the device,
	  additional drivers must be enabled in order to use the
	  functionality of the device.
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ obj-$(CONFIG_TWL4030_POWER) += twl4030-power.o
obj-$(CONFIG_TWL4030_CODEC)	+= twl4030-codec.o
obj-$(CONFIG_TWL6030_PWM)	+= twl6030-pwm.o

obj-$(CONFIG_MFD_MC13783)	+= mc13783-core.o
obj-$(CONFIG_MFD_MC13XXX)	+= mc13xxx-core.o

obj-$(CONFIG_MFD_CORE)		+= mfd-core.o

Loading