swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 60cc43fc888428bb2f18f08997432d426a243338 authored by Linus Torvalds on 16 April 2018, 01:24:20 UTC
Linux 4.17-rc1
Tip revision: 60cc43f
dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _M68K_DMA_MAPPING_H
#define _M68K_DMA_MAPPING_H

extern const struct dma_map_ops m68k_dma_ops;

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

#endif  /* _M68K_DMA_MAPPING_H */
back to top