2
0

modules.mk 463 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2010 OpenWrt.org
  4. I2C_LANTIQ_MODULES:= \
  5. CONFIG_I2C_LANTIQ:drivers/i2c/busses/i2c-lantiq
  6. define KernelPackage/i2c-lantiq
  7. TITLE:=Lantiq I2C controller
  8. $(call i2c_defaults,$(I2C_LANTIQ_MODULES),52)
  9. DEPENDS:=+kmod-i2c-core @TARGET_lantiq_falcon
  10. endef
  11. define KernelPackage/i2c-lantiq/description
  12. Kernel support for the Lantiq/Falcon I2C controller
  13. endef
  14. $(eval $(call KernelPackage,i2c-lantiq))