mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
1f49060adc
This patch removes code that became unused through IDE changes and the arch/ppc/ removal. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17 lines
547 B
C
17 lines
547 B
C
/*
|
|
* Copyright (C) 1994-1996 Linus Torvalds & authors
|
|
*
|
|
* This file contains the powerpc architecture specific IDE code.
|
|
*/
|
|
#ifndef _ASM_POWERPC_IDE_H
|
|
#define _ASM_POWERPC_IDE_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <asm/io.h>
|
|
|
|
#define __ide_mm_insw(p, a, c) readsw((void __iomem *)(p), (a), (c))
|
|
#define __ide_mm_insl(p, a, c) readsl((void __iomem *)(p), (a), (c))
|
|
#define __ide_mm_outsw(p, a, c) writesw((void __iomem *)(p), (a), (c))
|
|
#define __ide_mm_outsl(p, a, c) writesl((void __iomem *)(p), (a), (c))
|
|
|
|
#endif /* _ASM_POWERPC_IDE_H */
|