diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:28:10 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 18:28:10 -0500 |
commit | e39de58d21723df527ec979cde1df29980fab234 (patch) | |
tree | be13ea6337a491acb44e90d62ba034ee35187755 /src/kern/linux/printk.hh | |
parent | 1ffff78ca90d04622da78e7d1212148762bccef6 (diff) | |
download | gem5-e39de58d21723df527ec979cde1df29980fab234.tar.xz |
Took the Alpha prefix off of AlphaArguments, and made sure it was being used from TheISA:: rather than AlphaISA::
--HG--
extra : convert_revision : 17c143d3cbc2f58a7a9d01366a8f649810ff7f33
Diffstat (limited to 'src/kern/linux/printk.hh')
-rw-r--r-- | src/kern/linux/printk.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/kern/linux/printk.hh b/src/kern/linux/printk.hh index 5ddf0a018..17d59b765 100644 --- a/src/kern/linux/printk.hh +++ b/src/kern/linux/printk.hh @@ -32,8 +32,10 @@ #ifndef __PRINTK_HH__ #define __PRINTK_HH__ -class AlphaISA::AlphaArguments; +#include "arch/isa_specific.hh" -void Printk(AlphaISA::AlphaArguments args); +class TheISA::Arguments; + +void Printk(TheISA::Arguments args); #endif // __PRINTK_HH__ |