* [PATCH 0/2] twl4030-madc driver
@ 2010-09-16 5:34 Keerthy
2010-09-16 7:05 ` Jean Delvare
0 siblings, 1 reply; 6+ messages in thread
From: Keerthy @ 2010-09-16 5:34 UTC (permalink / raw)
To: linux-omap, khali; +Cc: j-keerthy, balajitk
MADC(Monitoring ADC) driver enables monitoring analog signals using
analog-to-digital conversion (ADC) on the input source. The MADC driver
is being added under the Hwmon class of drivers.
To get the context, the last set of comments can be found here:
http://www.mail-archive.com/linux-omap@vger.kernel.org/msg19981.html
Several people have contributed to this driver on the linux-omap list.
Keerthy (2):
hwmon: twl4030: Driver for twl4030 madc module
Makefile and Kconfig changes for twl4030-madc driver
arch/arm/mach-omap2/Kconfig | 4 +
drivers/hwmon/Kconfig | 4 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/twl4030-madc.c | 584 ++++++++++++++++++++++++++++++++++++++
include/linux/i2c/twl4030-madc.h | 118 ++++++++
5 files changed, 711 insertions(+), 0 deletions(-)
create mode 100644 drivers/hwmon/twl4030-madc.c
create mode 100644 include/linux/i2c/twl4030-madc.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] twl4030-madc driver
2010-09-16 5:34 Keerthy
@ 2010-09-16 7:05 ` Jean Delvare
0 siblings, 0 replies; 6+ messages in thread
From: Jean Delvare @ 2010-09-16 7:05 UTC (permalink / raw)
Cc: linux-omap, j-keerthy, balajitk
On Thu, 16 Sep 2010 11:04:24 +0530, Keerthy wrote:
> MADC(Monitoring ADC) driver enables monitoring analog signals using
> analog-to-digital conversion (ADC) on the input source. The MADC driver
> is being added under the Hwmon class of drivers.
> To get the context, the last set of comments can be found here:
> http://www.mail-archive.com/linux-omap@vger.kernel.org/msg19981.html
>
> Several people have contributed to this driver on the linux-omap list.
>
> Keerthy (2):
> hwmon: twl4030: Driver for twl4030 madc module
> Makefile and Kconfig changes for twl4030-madc driver
>
> arch/arm/mach-omap2/Kconfig | 4 +
> drivers/hwmon/Kconfig | 4 +
> drivers/hwmon/Makefile | 1 +
> drivers/hwmon/twl4030-madc.c | 584 ++++++++++++++++++++++++++++++++++++++
> include/linux/i2c/twl4030-madc.h | 118 ++++++++
> 5 files changed, 711 insertions(+), 0 deletions(-)
> create mode 100644 drivers/hwmon/twl4030-madc.c
> create mode 100644 include/linux/i2c/twl4030-madc.h
Please send hwmon drivers to the lm-sensors list as instructed by
MAINTAINERS.
--
Jean Delvare
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/2] twl4030-madc driver
@ 2010-09-16 10:23 Keerthy
0 siblings, 0 replies; 6+ messages in thread
From: Keerthy @ 2010-09-16 10:23 UTC (permalink / raw)
To: linux-omap, lm-sensors; +Cc: j-keerthy, balajitk
MADC(Monitoring ADC) driver enables monitoring analog signals using
analog-to-digital conversion (ADC) on the input source. The MADC driver
is being added under the Hwmon class of drivers.
To get the context, the last set of comments can be found here:
http://www.mail-archive.com/linux-omap@vger.kernel.org/msg19981.html
Several people have contributed to this driver on the linux-omap list.
Keerthy (2):
hwmon: twl4030: Driver for twl4030 madc module
Makefile and Kconfig changes for twl4030-madc driver
arch/arm/mach-omap2/Kconfig | 4 +
drivers/hwmon/Kconfig | 4 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/twl4030-madc.c | 584 ++++++++++++++++++++++++++++++++++++++
include/linux/i2c/twl4030-madc.h | 118 ++++++++
5 files changed, 711 insertions(+), 0 deletions(-)
create mode 100644 drivers/hwmon/twl4030-madc.c
create mode 100644 include/linux/i2c/twl4030-madc.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/2] twl4030-madc driver
@ 2011-02-16 12:26 Keerthy
2011-02-16 12:30 ` J, KEERTHY
0 siblings, 1 reply; 6+ messages in thread
From: Keerthy @ 2011-02-16 12:26 UTC (permalink / raw)
To: lm-sensors, guenter.roeck, sameo
Cc: mikko.k.ylinen, amit.kucheria, j-keerthy, linux-omap
MADC(Monitoring ADC) driver enables monitoring analog signals using
analog-to-digital conversion (ADC) on the input source.
The previous discussion concluded in keeping the generic ADC
functionality and the hwmon separate. The discussion can be found here:
http://www.mail-archive.com/linux-omap@vger.kernel.org/msg41805.html
Keerthy (2):
mfd: twl4030: Driver for twl4030 madc module
hwmon: twl4030: Hwmon Driver for TWL4030 MADC
Documentation/hwmon/twl4030-madc-hwmon | 45 ++
drivers/hwmon/Kconfig | 10 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/twl4030-madc-hwmon.c | 155 +++++++
drivers/mfd/Kconfig | 10 +
drivers/mfd/Makefile | 1 +
drivers/mfd/twl4030-madc.c | 721 ++++++++++++++++++++++++++++++++
include/linux/i2c/twl4030-madc.h | 132 ++++++
8 files changed, 1075 insertions(+), 0 deletions(-)
create mode 100644 Documentation/hwmon/twl4030-madc-hwmon
create mode 100644 drivers/hwmon/twl4030-madc-hwmon.c
create mode 100644 drivers/mfd/twl4030-madc.c
create mode 100644 include/linux/i2c/twl4030-madc.h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] twl4030-madc driver
2011-02-16 12:26 Keerthy
@ 2011-02-16 12:30 ` J, KEERTHY
0 siblings, 0 replies; 6+ messages in thread
From: J, KEERTHY @ 2011-02-16 12:30 UTC (permalink / raw)
To: lm-sensors, guenter.roeck, sameo
Cc: mikko.k.ylinen, amit.kucheria, j-keerthy, linux-omap
Hello all,
I will resend once again the right set. I apologise.
Regards,
Keerthy
On Wed, Feb 16, 2011 at 5:56 PM, Keerthy <j-keerthy@ti.com> wrote:
> MADC(Monitoring ADC) driver enables monitoring analog signals using
> analog-to-digital conversion (ADC) on the input source.
> The previous discussion concluded in keeping the generic ADC
> functionality and the hwmon separate. The discussion can be found here:
>
> http://www.mail-archive.com/linux-omap@vger.kernel.org/msg41805.html
>
> Keerthy (2):
> mfd: twl4030: Driver for twl4030 madc module
> hwmon: twl4030: Hwmon Driver for TWL4030 MADC
>
> Documentation/hwmon/twl4030-madc-hwmon | 45 ++
> drivers/hwmon/Kconfig | 10 +
> drivers/hwmon/Makefile | 1 +
> drivers/hwmon/twl4030-madc-hwmon.c | 155 +++++++
> drivers/mfd/Kconfig | 10 +
> drivers/mfd/Makefile | 1 +
> drivers/mfd/twl4030-madc.c | 721 ++++++++++++++++++++++++++++++++
> include/linux/i2c/twl4030-madc.h | 132 ++++++
> 8 files changed, 1075 insertions(+), 0 deletions(-)
> create mode 100644 Documentation/hwmon/twl4030-madc-hwmon
> create mode 100644 drivers/hwmon/twl4030-madc-hwmon.c
> create mode 100644 drivers/mfd/twl4030-madc.c
> create mode 100644 include/linux/i2c/twl4030-madc.h
>
>
--
Regards and Thanks,
Keerthy
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/2] twl4030-madc driver
@ 2011-02-16 12:55 Keerthy
0 siblings, 0 replies; 6+ messages in thread
From: Keerthy @ 2011-02-16 12:55 UTC (permalink / raw)
To: lm-sensors, guenter.roeck, sameo
Cc: mikko.k.ylinen, amit.kucheria, j-keerthy, linux-omap
MADC(Monitoring ADC) driver enables monitoring analog signals using
analog-to-digital conversion (ADC) on the input source.
The previous discussion concluded in keeping the generic ADC
functionality and the hwmon separate. The discussion can be found here:
http://www.mail-archive.com/linux-omap@vger.kernel.org/msg41805.html
Keerthy (2):
mfd: twl4030: Driver for twl4030 madc module
hwmon: twl4030: Hwmon Driver for TWL4030 MADC
Documentation/hwmon/twl4030-madc-hwmon | 45 ++
drivers/hwmon/Kconfig | 10 +
drivers/hwmon/Makefile | 1 +
drivers/hwmon/twl4030-madc-hwmon.c | 155 +++++++
drivers/mfd/Kconfig | 10 +
drivers/mfd/Makefile | 1 +
drivers/mfd/twl4030-madc.c | 723 ++++++++++++++++++++++++++++++++
include/linux/i2c/twl4030-madc.h | 132 ++++++
8 files changed, 1077 insertions(+), 0 deletions(-)
create mode 100644 Documentation/hwmon/twl4030-madc-hwmon
create mode 100644 drivers/hwmon/twl4030-madc-hwmon.c
create mode 100644 drivers/mfd/twl4030-madc.c
create mode 100644 include/linux/i2c/twl4030-madc.h
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-02-16 12:57 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-16 10:23 [PATCH 0/2] twl4030-madc driver Keerthy
-- strict thread matches above, loose matches on Subject: below --
2011-02-16 12:55 Keerthy
2011-02-16 12:26 Keerthy
2011-02-16 12:30 ` J, KEERTHY
2010-09-16 5:34 Keerthy
2010-09-16 7:05 ` Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).