675aae732d
This is a simple subsystem that allow drivers to register as a backlight. Each backlight creates a device node under /dev/backlight/backlightX and an alias based on the name provided. Relnotes: yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D26250
14 lines
192 B
Makefile
14 lines
192 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/backlight
|
|
KMOD= backlight
|
|
SRCS= backlight.c
|
|
|
|
SRCS+= bus_if.h \
|
|
device_if.h \
|
|
opt_platform.h \
|
|
backlight_if.h \
|
|
backlight_if.c
|
|
|
|
.include <bsd.kmod.mk>
|