Commit e899fce5 authored by Michael Ellerman's avatar Michael Ellerman

powerpc/64s: Rename STD_EXCEPTION_PSERIES to STD_EXCEPTION

The "PSERIES" in STD_EXCEPTION_PSERIES is to differentiate the macros
from the legacy iSeries versions, which are called
STD_EXCEPTION_ISERIES. It is not anything to do with pseries vs
powernv or powermac etc.

We removed the legacy iSeries code in 2012, in commit 8ee3e0d6x
("powerpc: Remove the main legacy iSerie platform code").

So remove "PSERIES" from the macros.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 92b6d65c
...@@ -553,7 +553,7 @@ END_FTR_SECTION_NESTED(ftr,ftr,943) ...@@ -553,7 +553,7 @@ END_FTR_SECTION_NESTED(ftr,ftr,943)
/* /*
* Exception vectors. * Exception vectors.
*/ */
#define STD_EXCEPTION_PSERIES(vec, label) \ #define STD_EXCEPTION(vec, label) \
EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label, \ EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label, \
EXC_STD, KVMTEST_PR, vec); \ EXC_STD, KVMTEST_PR, vec); \
......
...@@ -260,7 +260,7 @@ end_##sname: ...@@ -260,7 +260,7 @@ end_##sname:
#define EXC_REAL(name, start, size) \ #define EXC_REAL(name, start, size) \
EXC_REAL_BEGIN(name, start, size); \ EXC_REAL_BEGIN(name, start, size); \
STD_EXCEPTION_PSERIES(start, name##_common); \ STD_EXCEPTION(start, name##_common); \
EXC_REAL_END(name, start, size); EXC_REAL_END(name, start, size);
#define EXC_VIRT(name, start, size, realvec) \ #define EXC_VIRT(name, start, size, realvec) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment