瀏覽代碼

pwm: export the generic pwm api as module

SVN-Revision: 22297
Claudio Mignanti 15 年之前
父節點
當前提交
3f25930247
共有 2 個文件被更改,包括 18 次插入3 次删除
  1. 17 2
      package/kernel/modules/other.mk
  2. 1 1
      target/linux/generic/files/drivers/pwm/Makefile

+ 17 - 2
package/kernel/modules/other.mk

@@ -679,11 +679,26 @@ endef
 $(eval $(call KernelPackage,wdt-scx200))
 
 
+define KernelPackage/pwm
+  SUBMENU:=$(OTHER_MENU)
+  TITLE:=PWM generic API
+  KCONFIG:=CONFIG_GENERIC_PWM
+  FILES:=$(LINUX_DIR)/drivers/pwm/pwm.ko
+  AUTOLOAD:=$(call AutoLoad,50,pwm)
+endef
+
+define KernelPackage/pwm/description
+ Kernel module that implement a generic PWM API
+endef
+
+$(eval $(call KernelPackage,pwm))
+
+
 define KernelPackage/pwm-gpio
   SUBMENU:=$(OTHER_MENU)
   TITLE:=PWM over GPIO
-  KCONFIG:=CONFIG_GENERIC_PWM \
-		CONFIG_GPIO_PWM
+  DEPENDS:=+kmod-pwm
+  KCONFIG:=CONFIG_GPIO_PWM
   FILES:=$(LINUX_DIR)/drivers/pwm/gpio-pwm.ko
   AUTOLOAD:=$(call AutoLoad,51,gpio-pwm)
 endef

+ 1 - 1
target/linux/generic/files/drivers/pwm/Makefile

@@ -1,6 +1,6 @@
 #
 # Makefile for pwm devices
 #
-obj-y := pwm.o
+obj-$(CONFIG_GENERIC_PWM) := pwm.o
 obj-$(CONFIG_ATMEL_PWM)		+= atmel-pwm.o
 obj-$(CONFIG_GPIO_PWM)		+= gpio-pwm.o