Commit 175c9021 authored by zhangshuowen96's avatar zhangshuowen96
Browse files

drivers: misc: sdma-dae: enable sdma_dae for arm64

kunpeng inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I9W355


CVE: NA

----------------------------------------------------------------------

Enable SDMA_DAE for arm64 by default.

Signed-off-by: default avatarzhangshuowen96 <zhangshuowen@hisilicon.com>
parent e64fcc91
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
config SDMA_DAE
	tristate "DAE SDMA core support"
	depends on ARM64
	default m
	help
	  Core support for DAE SDMA.
	  The driver depands on ARM64.
	  To compile SDMA driver as module, choose m here.
	  module will be called sdma_dae.
+7 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-or-later
MODULE_NAME := sdma-dae
ccflags-y += -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare -Wno-type-limits

$(MODULE_NAME)-objs := sdma_main.o sdma_cdev.o sdma_umem.o sdma_irq.o sdma_auth.o

obj-$(CONFIG_SDMA_DAE) += sdma-dae.o
 No newline at end of file