From cb660e0895803b771a5e86283c4938af9a0f93a3 Mon Sep 17 00:00:00 2001 From: Claudio Mignanti Date: Mon, 14 Jun 2010 18:01:11 +0000 Subject: [kernel] Add the generic PWM api from Bill Gatliff (experimental). Ignore the leds trigger part at the moment git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21800 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches-2.6.34/890-generic_pwm_api.patch | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 target/linux/generic-2.6/patches-2.6.34/890-generic_pwm_api.patch (limited to 'target/linux/generic-2.6/patches-2.6.34/890-generic_pwm_api.patch') diff --git a/target/linux/generic-2.6/patches-2.6.34/890-generic_pwm_api.patch b/target/linux/generic-2.6/patches-2.6.34/890-generic_pwm_api.patch new file mode 100644 index 0000000000..6c58e53204 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.34/890-generic_pwm_api.patch @@ -0,0 +1,46 @@ +Patches from: Bill Gatliff +Based on: +* Expunge old Atmel PWMC driver, replacing it with one that conforms to the PWM API +* Incorporate PWM API code into KBuild +Ignore the LEDS part atm +--- + +diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile +index 049ff24..b94666c 100644 +--- a/drivers/misc/Makefile ++++ b/drivers/misc/Makefile +@@ -5,7 +5,6 @@ + obj-$(CONFIG_IBM_ASM) += ibmasm/ + obj-$(CONFIG_HDPU_FEATURES) += hdpuftrs/ + obj-$(CONFIG_AD525X_DPOT) += ad525x_dpot.o +-obj-$(CONFIG_ATMEL_PWM) += atmel_pwm.o + obj-$(CONFIG_ATMEL_SSC) += atmel-ssc.o + obj-$(CONFIG_ATMEL_TCLIB) += atmel_tclib.o + obj-$(CONFIG_ICS932S401) += ics932s401.o +diff --git a/drivers/Kconfig b/drivers/Kconfig +index 368ae6d..54d7b16 100644 +--- a/drivers/Kconfig ++++ b/drivers/Kconfig +@@ -54,6 +54,8 @@ source "drivers/pps/Kconfig" + + source "drivers/gpio/Kconfig" + ++source "drivers/pwm/Kconfig" ++ + source "drivers/w1/Kconfig" + + source "drivers/power/Kconfig" +diff --git a/drivers/Makefile b/drivers/Makefile +index 6ee53c7..e6143f3 100644 +--- a/drivers/Makefile ++++ b/drivers/Makefile +@@ -6,6 +6,8 @@ + # + + obj-y += gpio/ ++obj-$(CONFIG_GENERIC_PWM) += pwm/ ++ + obj-$(CONFIG_PCI) += pci/ + obj-$(CONFIG_PARISC) += parisc/ + obj-$(CONFIG_RAPIDIO) += rapidio/ +diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig -- cgit v1.2.3