[PATCH v2 1/4] mfd: pm8xxx-spmi: add support for Qualcomm SPMI PMICs
From: Stanimir Varbanov <hidden>
Date: 2014-07-22 11:51:58
Also in:
linux-arm-msm, linux-devicetree, lkml
On 07/22/2014 02:03 PM, Lee Jones wrote:
On Thu, 17 Jul 2014, Stanimir Varbanov wrote:quoted
From: Josh Cartwright <redacted> The Qualcomm SPMI PMIC chips are components used with the Snapdragon 800 series SoC family. This driver exists largely as a glue mfd component, it exists to be an owner of an SPMI regmap for children devices described in device tree. Signed-off-by: Stanimir Varbanov <redacted>Needs to be signed off by the author.quoted
--- drivers/mfd/Kconfig | 16 +++++++++++ drivers/mfd/Makefile | 1 + drivers/mfd/pm8xxx-spmi.c | 63 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+), 0 deletions(-) create mode 100644 drivers/mfd/pm8xxx-spmi.c[...]quoted
+++ b/drivers/mfd/pm8xxx-spmi.c@@ -0,0 +1,63 @@ +/* + * Copyright (c) 2014, The Linux Foundation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 and + * only version 2 as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */There should be a '\n' here.
OK.
quoted
+#include <linux/kernel.h> +#include <linux/module.h> +#include <linux/spmi.h> +#include <linux/regmap.h> +#include <linux/of_platform.h>[...]quoted
+MODULE_DESCRIPTION("PM8XXX SPMI PMIC driver"); +MODULE_ALIAS("platform:" KBUILD_MODNAME);
I will change this to:
MODULE_ALIAS("spmi:pm8xxx-spmi");
quoted
+MODULE_AUTHOR("The Linux Foundation");The Linux Foundation did not write this patch.
OK, I will change the author or remove the tag completely.
quoted
+MODULE_LICENSE("GPL v2");Appart from that: Acked-by: Lee Jones <redacted>
Thanks. I will resend the whole patch set with your acks. -- regards, Stan