x86, realmode: Pointer walk cleanups, pull out invariant use of __pa()
authorH. Peter Anvin <hpa@linux.intel.com>
Wed, 18 Dec 2013 23:52:13 +0000 (15:52 -0800)
committerH. Peter Anvin <hpa@linux.intel.com>
Thu, 19 Dec 2013 00:07:53 +0000 (16:07 -0800)
commit7306006f103567fcf595d23dd741da0b8642f4c5
tree779b11f355093d7982d01d8ba383eb74f0bf25ad
parentd8af4ce490e92adfa123ae79899332bd829903e7
x86, realmode: Pointer walk cleanups, pull out invariant use of __pa()

The pointer arithmetic in this function was really bizarre, where in
fact all we really wanted was a simple pointer array walk.  Use the
much more idiomatic construction for that (*ptr++).

Factor an invariant use of __pa() out of the relocation loop.  At
least on 64 bits it seems gcc isn't capable of doing that
automatically.

Change the scope of a couple of variables to make it extra obvious
that they are extremely local temp variables.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/n/tip-rd908t9c8kvcojdabtmm94mb@git.kernel.org
arch/x86/realmode/init.c