makefile

来自「TI的达芬奇系列dm355使用的spi模块驱动」· 代码 · 共 29 行

TXT
29
字号
## Makefile for kernel SPI drivers.#ifeq ($(CONFIG_SPI_DEBUG),y)EXTRA_CFLAGS += -DDEBUGendif# small core, mostly translating board-specific# config declarations into driver model codeobj-$(CONFIG_SPI_MASTER)		+= spi.o# SPI master controller drivers (bus)obj-$(CONFIG_SPI_DM355)         += dm355_spi_master.oobj-$(CONFIG_SPI_DM355_BITBANG) += dm355_spi_bitbang.oobj-$(CONFIG_SPI_BITBANG)		+= spi_bitbang.oobj-$(CONFIG_SPI_BUTTERFLY)		+= spi_butterfly.oobj-$(CONFIG_SPI_VR)			+= vr_spi.o# 	... add above this line ...# SPI protocol drivers (device/link on bus)# 	... add above this line ...# SPI slave controller drivers (upstream link)# 	... add above this line ...# SPI slave drivers (protocol for that link)# 	... add above this line ...

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?