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
nexedi
linux
Commits
a76f9fe1
Commit
a76f9fe1
authored
Jun 16, 2005
by
Maciej W. Rozycki
Committed by
Ralf Baechle
Oct 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GCC 4.0.0 broke `attribute(("alias"))' -- resort to an assembly variant.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
3bd4c902
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
include/asm-mips/dec/prom.h
include/asm-mips/dec/prom.h
+15
-13
No files found.
include/asm-mips/dec/prom.h
View file @
a76f9fe1
...
...
@@ -111,19 +111,21 @@ extern int (*__pmax_close)(int);
* On MIPS64 we have to call PROM functions via a helper
* dispatcher to accomodate ABI incompatibilities.
*/
#define __DEC_PROM_O32 __attribute__((alias("call_o32")))
int
_rex_bootinit
(
int
(
*
)(
void
))
__DEC_PROM_O32
;
int
_rex_bootread
(
int
(
*
)(
void
))
__DEC_PROM_O32
;
int
_rex_getbitmap
(
int
(
*
)(
memmap
*
),
memmap
*
)
__DEC_PROM_O32
;
unsigned
long
*
_rex_slot_address
(
unsigned
long
*
(
*
)(
int
),
int
)
__DEC_PROM_O32
;
void
*
_rex_gettcinfo
(
void
*
(
*
)(
void
))
__DEC_PROM_O32
;
int
_rex_getsysid
(
int
(
*
)(
void
))
__DEC_PROM_O32
;
void
_rex_clear_cache
(
void
(
*
)(
void
))
__DEC_PROM_O32
;
int
_prom_getchar
(
int
(
*
)(
void
))
__DEC_PROM_O32
;
char
*
_prom_getenv
(
char
*
(
*
)(
char
*
),
char
*
)
__DEC_PROM_O32
;
int
_prom_printf
(
int
(
*
)(
char
*
,
...),
char
*
,
...)
__DEC_PROM_O32
;
#define __DEC_PROM_O32(fun, arg) fun arg __asm__(#fun); \
__asm__(#fun " = call_o32")
int
__DEC_PROM_O32
(
_rex_bootinit
,
(
int
(
*
)(
void
)));
int
__DEC_PROM_O32
(
_rex_bootread
,
(
int
(
*
)(
void
)));
int
__DEC_PROM_O32
(
_rex_getbitmap
,
(
int
(
*
)(
memmap
*
),
memmap
*
));
unsigned
long
*
__DEC_PROM_O32
(
_rex_slot_address
,
(
unsigned
long
*
(
*
)(
int
),
int
));
void
*
__DEC_PROM_O32
(
_rex_gettcinfo
,
(
void
*
(
*
)(
void
)));
int
__DEC_PROM_O32
(
_rex_getsysid
,
(
int
(
*
)(
void
)));
void
__DEC_PROM_O32
(
_rex_clear_cache
,
(
void
(
*
)(
void
)));
int
__DEC_PROM_O32
(
_prom_getchar
,
(
int
(
*
)(
void
)));
char
*
__DEC_PROM_O32
(
_prom_getenv
,
(
char
*
(
*
)(
char
*
),
char
*
));
int
__DEC_PROM_O32
(
_prom_printf
,
(
int
(
*
)(
char
*
,
...),
char
*
,
...));
#define rex_bootinit() _rex_bootinit(__rex_bootinit)
...
...
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