diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2007-10-18 00:04:53 -0700 |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-10-18 00:59:27 -0700 |
commit | 873d50e2e56741406ff9d68c275f0c560e896a80 (patch) | |
tree | f5e295584f060a50571953a674616b2f816f3c63 /arch/parisc/hpux/gate.S | |
parent | 6ebeafff6452d89b294ba9b7402529b981b9624c (diff) | |
download | blackbird-obmc-linux-873d50e2e56741406ff9d68c275f0c560e896a80.tar.gz blackbird-obmc-linux-873d50e2e56741406ff9d68c275f0c560e896a80.zip |
[PARISC] Remove hardcoded uses of PAGE_SIZE
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/hpux/gate.S')
-rw-r--r-- | arch/parisc/hpux/gate.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/hpux/gate.S b/arch/parisc/hpux/gate.S index 0b9d5b1e4b37..38a1c1b8d4e8 100644 --- a/arch/parisc/hpux/gate.S +++ b/arch/parisc/hpux/gate.S @@ -20,7 +20,7 @@ .import hpux_call_table .import hpux_syscall_exit,code - .align 4096 + .align PAGE_SIZE ENTRY(hpux_gateway_page) nop #ifdef CONFIG_64BIT @@ -103,5 +103,5 @@ syscall_nosys: ldo -ENOSYS(%r0),%r28 ENDPROC(hpux_gateway_page) - .align 4096 + .align PAGE_SIZE ENTRY(end_hpux_gateway_page) |