From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Fri, 09 Oct 2015 07:49:53 +0100 Subject: [U-Boot] [PATCH 1/7] sunxi: Kconfig-ify CONFIG_AXP152_POWER and _AXP209_POWER In-Reply-To: <1443882383-21181-1-git-send-email-hdegoede@redhat.com> References: <1443882383-21181-1-git-send-email-hdegoede@redhat.com> Message-ID: <1444373393.16876.3.camel@hellion.org.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Sat, 2015-10-03 at 16:26 +0200, Hans de Goede wrote: > Note that sun5i boards can have either an AXP209 or an AXP152 pmic, Is it actually xor? I think so given that you later on unify the names such that they cannot be compiled in at the same time. If so then... > +config AXP152_POWER > + boolean "axp152 pmic support" > + depends on MACH_SUN5I > + ---help--- > + Say y here to enable support for the axp152 pmic found on > most A10s > + boards. > + > +config AXP209_POWER > + boolean "axp209 pmic support" > + depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I > + default y if MACH_SUN4I || MACH_SUN7I > + ---help--- > + Say y here to enable support for the axp209 pmic found on > most > + A10, A13 and A20 boards. > + > config AXP221_POWER ... these three ought to be inside a choice? Ian.