mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
7483c429d0
PD#SWPL-192261 Problem: need synchronize fixed code from kernel5.15 to kernel6.12 Solution: fixed Verify: sc2 Change-Id: I9247afced7ae103ca84cda95a962622c5511dfd6 Signed-off-by: Liming Xue <liming.xue@amlogic.com>
12 lines
383 B
Makefile
12 lines
383 B
Makefile
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
# Makefile for amlogic mcu host driver
|
|
|
|
MODULE_NAME = amlogic-host
|
|
obj-$(CONFIG_AMLOGIC_HOST_DRIVER) = $(MODULE_NAME).o
|
|
$(MODULE_NAME)-$(CONFIG_AMLOGIC_HOST_DRIVER) += host.o sysfs.o host_poll.o host_report.o
|
|
|
|
PR_FMT = $(subst amlogic-,,$(MODULE_NAME))
|
|
PR_FMT_DEFINE="-Dpr_fmt(fmt)= \"[$(PR_FMT)]: \" fmt"
|
|
ccflags-y += $(PR_FMT_DEFINE)
|