sevki
c9e1dba412
setup CI/CD for kernel development - added CodeQL for code scanning - every pr is built as an image and is available for 30days on https://oklinux.dev - tagged and released on github for now Signed-off-by: sevki <s@sevki.io>
20 lines
413 B
C
20 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2009 Becky Bruce, Freescale Semiconductor
|
|
*/
|
|
|
|
#ifndef __ASM_SWIOTLB_H
|
|
#define __ASM_SWIOTLB_H
|
|
|
|
#include <linux/swiotlb.h>
|
|
|
|
extern unsigned int ppc_swiotlb_enable;
|
|
extern unsigned int ppc_swiotlb_flags;
|
|
|
|
#ifdef CONFIG_SWIOTLB
|
|
void swiotlb_detect_4g(void);
|
|
#else
|
|
static inline void swiotlb_detect_4g(void) {}
|
|
#endif
|
|
|
|
#endif /* __ASM_SWIOTLB_H */
|