
Dear Steve Sakoman,
In message 1279941255-26947-5-git-send-email-steve@sakoman.com you wrote:
This patch add the basic infrastructure for the TWL6030 driver and enables support in the two existing OMAP4 boards, Panda and OMAP4430 SDP
Signed-off-by: Steve Sakoman steve@sakoman.com
drivers/power/Makefile | 1 + drivers/power/twl6030.c | 77 +++++++++++++++++++++++++++++++++ include/configs/omap4_panda.h | 3 + include/configs/omap4_sdp4430.h | 3 + include/twl6030.h | 90 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 174 insertions(+), 0 deletions(-) create mode 100644 drivers/power/twl6030.c create mode 100644 include/twl6030.h
diff --git a/drivers/power/Makefile b/drivers/power/Makefile index dd06514..db53173 100644 --- a/drivers/power/Makefile +++ b/drivers/power/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libpower.a
COBJS-$(CONFIG_TWL4030_POWER) += twl4030.o +COBJS-$(CONFIG_TWL6030_POWER) += twl6030.o
COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) diff --git a/drivers/power/twl6030.c b/drivers/power/twl6030.c new file mode 100644 index 0000000..b47992b --- /dev/null +++ b/drivers/power/twl6030.c @@ -0,0 +1,77 @@ +/*
- (C) Copyright 2010
- Texas Instruments, <www.ti.com>
- See file CREDITS for list of people who contributed to this
- project.
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- version 2 as published by the Free Software Foundation.
NAK.
We require the "or (at your option) any later version" clause.
Best regards,
Wolfgang Denk