drivers/counter/Makefile

Source file repositories/reference/linux-study-clean/drivers/counter/Makefile

File Facts

System
Linux kernel
Corpus path
drivers/counter/Makefile
Extension
[no extension]
Size
676 bytes
Lines
20
Domain
Driver Families
Bucket
drivers/counter
Inferred role
Driver Families: build/configuration rule
Status
atlas-only

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

# SPDX-License-Identifier: GPL-2.0-only
#
# Makefile for Counter devices
#

obj-$(CONFIG_COUNTER) += counter.o
counter-y := counter-core.o counter-sysfs.o counter-chrdev.o

obj-$(CONFIG_I8254)		+= i8254.o
obj-$(CONFIG_104_QUAD_8)	+= 104-quad-8.o
obj-$(CONFIG_INTERRUPT_CNT)		+= interrupt-cnt.o
obj-$(CONFIG_RZ_MTU3_CNT)	+= rz-mtu3-cnt.o
obj-$(CONFIG_STM32_TIMER_CNT)	+= stm32-timer-cnt.o
obj-$(CONFIG_STM32_LPTIMER_CNT)	+= stm32-lptimer-cnt.o
obj-$(CONFIG_TI_EQEP)		+= ti-eqep.o
obj-$(CONFIG_FTM_QUADDEC)	+= ftm-quaddec.o
obj-$(CONFIG_MICROCHIP_TCB_CAPTURE)	+= microchip-tcb-capture.o
obj-$(CONFIG_INTEL_QEP)		+= intel-qep.o
obj-$(CONFIG_TI_ECAP_CAPTURE)	+= ti-ecap-capture.o

Annotation

Implementation Notes