aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nds32/include/asm/dma-mapping.h
blob: 2dd47d245c251c8a862d91d7705599039ef42a28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2005-2017 Andes Technology Corporation

#ifndef ASMNDS32_DMA_MAPPING_H
#define ASMNDS32_DMA_MAPPING_H

extern struct dma_map_ops nds32_dma_ops;

static inline struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
	return &nds32_dma_ops;
}

#endif