mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 14:06:15 +00:00
fcd935a5e4
Allows removal of the remove function by letting devm handle everything. Avoids gotos as well. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16507 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=gpio-nct5104d
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_MAINTAINER:=Florian Eckert <Eckert.Florian@googlemail.com>
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/gpio-nct5104d
|
|
SUBMENU:=GPIO support
|
|
TITLE:= GPIO nct5104d support
|
|
DEPENDS:= @GPIO_SUPPORT @TARGET_x86
|
|
FILES:=$(PKG_BUILD_DIR)/gpio-nct5104d.ko
|
|
AUTOLOAD:=$(call AutoLoad,30,gpio-nct5104d,1)
|
|
KCONFIG:=
|
|
endef
|
|
|
|
define KernelPackage/gpio-nct5104d/description
|
|
Support for GPIO functionality of NCT5104D super I/O chip.
|
|
endef
|
|
|
|
EXTRA_KCONFIG:= \
|
|
CONFIG_GPIO_NCT5104D=m
|
|
|
|
EXTRA_CFLAGS:= \
|
|
$(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(EXTRA_KCONFIG)))) \
|
|
$(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(EXTRA_KCONFIG)))) \
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) \
|
|
M="$(PKG_BUILD_DIR)" \
|
|
EXTRA_CFLAGS="$(EXTRA_CFLAGS)" \
|
|
$(EXTRA_KCONFIG) \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,gpio-nct5104d))
|