mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-18 02:04:28 +00:00
14 lines
276 B
C
14 lines
276 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __LINUX_ISA_DMA_H
|
|
#define __LINUX_ISA_DMA_H
|
|
|
|
#include <asm/dma.h>
|
|
|
|
#if defined(CONFIG_PCI) && defined(CONFIG_X86_32)
|
|
extern int isa_dma_bridge_buggy;
|
|
#else
|
|
#define isa_dma_bridge_buggy (0)
|
|
#endif
|
|
|
|
#endif /* __LINUX_ISA_DMA_H */
|