Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ab254e4f
Commit
ab254e4f
authored
Sep 11, 2002
by
Jens Axboe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arch ide updates. mainly ide_ioreg_t type changes, and removal of
silly old irq and region registration etc.
parent
d271af5d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
11 additions
and
25 deletions
+11
-25
include/asm-alpha/hdreg.h
include/asm-alpha/hdreg.h
+1
-1
include/asm-arm/hdreg.h
include/asm-arm/hdreg.h
+1
-1
include/asm-i386/hdreg.h
include/asm-i386/hdreg.h
+1
-1
include/asm-i386/ide.h
include/asm-i386/ide.h
+0
-14
include/asm-parisc/hdreg.h
include/asm-parisc/hdreg.h
+1
-1
include/asm-ppc/hdreg.h
include/asm-ppc/hdreg.h
+1
-1
include/asm-sh/hdreg.h
include/asm-sh/hdreg.h
+1
-1
include/asm-x86_64/hdreg.h
include/asm-x86_64/hdreg.h
+1
-1
include/asm-x86_64/ide.h
include/asm-x86_64/ide.h
+4
-4
No files found.
include/asm-alpha/hdreg.h
View file @
ab254e4f
...
...
@@ -7,6 +7,6 @@
#ifndef __ASMalpha_HDREG_H
#define __ASMalpha_HDREG_H
typedef
unsigned
short
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASMalpha_HDREG_H */
include/asm-arm/hdreg.h
View file @
ab254e4f
...
...
@@ -7,7 +7,7 @@
#ifndef __ASMARM_HDREG_H
#define __ASMARM_HDREG_H
typedef
unsigned
int
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASMARM_HDREG_H */
include/asm-i386/hdreg.h
View file @
ab254e4f
...
...
@@ -7,6 +7,6 @@
#ifndef __ASMi386_HDREG_H
#define __ASMi386_HDREG_H
typedef
unsigned
short
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASMi386_HDREG_H */
include/asm-i386/ide.h
View file @
ab254e4f
...
...
@@ -77,20 +77,6 @@ static __inline__ void ide_init_default_hwifs(void)
#endif
}
#define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id))
#define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id))
#define ide_check_region(from,extent) check_region((from), (extent))
#define ide_request_region(from,extent,name) request_region((from), (extent), (name))
#define ide_release_region(from,extent) release_region((from), (extent))
/*
* The following are not needed for the non-m68k ports
*/
#define ide_ack_intr(hwif) (1)
#define ide_fix_driveid(id) do {} while (0)
#define ide_release_lock(lock) do {} while (0)
#define ide_get_lock(lock, hdlr, data) do {} while (0)
#endif
/* __KERNEL__ */
#endif
/* __ASMi386_IDE_H */
include/asm-parisc/hdreg.h
View file @
ab254e4f
#ifndef _ASM_HDREG_H
#define _ASM_HDREG_H
typedef
unsigned
short
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
include/asm-ppc/hdreg.h
View file @
ab254e4f
...
...
@@ -14,7 +14,7 @@
#ifndef __ASMPPC_HDREG_H
#define __ASMPPC_HDREG_H
typedef
unsigned
int
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASMPPC_HDREG_H */
include/asm-sh/hdreg.h
View file @
ab254e4f
...
...
@@ -7,6 +7,6 @@
#ifndef __ASM_SH_HDREG_H
#define __ASM_SH_HDREG_H
typedef
unsigned
int
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASM_SH_HDREG_H */
include/asm-x86_64/hdreg.h
View file @
ab254e4f
...
...
@@ -7,6 +7,6 @@
#ifndef __ASMx86_64_HDREG_H
#define __ASMx86_64_HDREG_H
typedef
unsigned
short
ide_ioreg_t
;
typedef
unsigned
long
ide_ioreg_t
;
#endif
/* __ASMx86_64_HDREG_H */
include/asm-x86_64/ide.h
View file @
ab254e4f
/*
* linux/include/asm-
i386
/ide.h
* linux/include/asm-
x86_64
/ide.h
*
* Copyright (C) 1994-1996 Linus Torvalds & authors
*/
...
...
@@ -8,8 +8,8 @@
* This file contains the i386 architecture specific IDE code.
*/
#ifndef __ASM
i386
_IDE_H
#define __ASM
i386
_IDE_H
#ifndef __ASM
x86_64
_IDE_H
#define __ASM
x86_64
_IDE_H
#ifdef __KERNEL__
...
...
@@ -79,4 +79,4 @@ static __inline__ void ide_init_default_hwifs(void)
#endif
/* __KERNEL__ */
#endif
/* __ASM
i386
_IDE_H */
#endif
/* __ASM
x86_64
_IDE_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment