From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Wed, 25 Sep 2013 11:15:39 +0900 Subject: [U-Boot] [PATCH V2] drivers:power:max77693: add support for new multi function pmic max77693 In-Reply-To: <1380033082-29962-1-git-send-email-p.wilczek@samsung.com> References: <1369141218-26557-1-git-send-email-p.wilczek@samsung.com> <1380033082-29962-1-git-send-email-p.wilczek@samsung.com> Message-ID: <5242474B.8010106@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dear Piotr Wilczek, On 24/09/13 23:31, Piotr Wilczek wrote: > This patch add support for new multi function pmic max77693. > The driver is split into three modules: pmic, muic and fuelgage. > > Signed-off-by: Piotr Wilczek > Signed-off-by: Kyungmin Park > CC: Minkyu Kang > --- > > Changes for V2: > - replaced GPL license with SPDX license GPL-2.0+; > - added author to all new files; > - fixed return values; > > Makefile | 1 + > drivers/power/mfd/Makefile | 33 +++++++++ > drivers/power/mfd/fg_max77693.c | 139 +++++++++++++++++++++++++++++++++++++ > drivers/power/mfd/muic_max77693.c | 77 ++++++++++++++++++++ > drivers/power/mfd/pmic_max77693.c | 96 +++++++++++++++++++++++++ > include/power/max77693_fg.h | 49 +++++++++++++ > include/power/max77693_muic.h | 74 ++++++++++++++++++++ > include/power/max77693_pmic.h | 43 ++++++++++++ > 8 files changed, 512 insertions(+) > create mode 100644 drivers/power/mfd/Makefile > create mode 100644 drivers/power/mfd/fg_max77693.c > create mode 100644 drivers/power/mfd/muic_max77693.c > create mode 100644 drivers/power/mfd/pmic_max77693.c > create mode 100644 include/power/max77693_fg.h > create mode 100644 include/power/max77693_muic.h > create mode 100644 include/power/max77693_pmic.h > applied to u-boot-samsung. Thanks, Minkyu Kang.