summaryrefslogtreecommitdiff
path: root/i386/intel
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-14 13:44:30 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-15 02:18:51 +0100
commit38552071b77e4bc21575892a5c499597e40632a7 (patch)
tree95c0c7a07e17240c6dcec9c928c963a24a477497 /i386/intel
parent6c571e4d893b07a7fef36fe703008f347739302e (diff)
i386/intel/pmap.h: remove register qualifiers
* i386/intel/pmap.h: Remove register qualifiers.
Diffstat (limited to 'i386/intel')
-rw-r--r--i386/intel/pmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/i386/intel/pmap.h b/i386/intel/pmap.h
index 93293e3..087e0ef 100644
--- a/i386/intel/pmap.h
+++ b/i386/intel/pmap.h
@@ -282,7 +282,7 @@ pt_entry_t *pmap_pte(pmap_t pmap, vm_offset_t addr);
}
#define PMAP_ACTIVATE_USER(pmap, th, my_cpu) { \
- register pmap_t tpmap = (pmap); \
+ pmap_t tpmap = (pmap); \
\
if (tpmap == kernel_pmap) { \
/* \
@@ -324,7 +324,7 @@ pt_entry_t *pmap_pte(pmap_t pmap, vm_offset_t addr);
}
#define PMAP_DEACTIVATE_USER(pmap, thread, my_cpu) { \
- register pmap_t tpmap = (pmap); \
+ pmap_t tpmap = (pmap); \
\
/* \
* Do nothing if this is the kernel pmap. \
@@ -395,7 +395,7 @@ pt_entry_t *pmap_pte(pmap_t pmap, vm_offset_t addr);
}
#define PMAP_ACTIVATE_USER(pmap, th, my_cpu) { \
- register pmap_t tpmap = (pmap); \
+ pmap_t tpmap = (pmap); \
(void) (th); \
(void) (my_cpu); \
\