Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  *  Copyright (C) 1994-1996 Linus Torvalds & authors
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  *  This file contains the powerpc architecture specific IDE code.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #ifndef _ASM_POWERPC_IDE_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define _ASM_POWERPC_IDE_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #include <linux/compiler.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #include <asm/io.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #define __ide_mm_insw(p, a, c)	readsw((void __iomem *)(p), (a), (c))
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #define __ide_mm_insl(p, a, c)	readsl((void __iomem *)(p), (a), (c))
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #define __ide_mm_outsw(p, a, c)	writesw((void __iomem *)(p), (a), (c))
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define __ide_mm_outsl(p, a, c)	writesl((void __iomem *)(p), (a), (c))
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #endif /* _ASM_POWERPC_IDE_H */