mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-06 22:55:11 +00:00
powerpc: Add alignment handler for new lfiwzx instruction
lfiwzx is a new floating point load instruction in 2.06 that needs an alignment handler for Linux. Turns out to be the worlds easiest handler to add. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
0f16ef7fd3
commit
545bba1824
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ static struct aligninfo aligninfo[128] = {
|
||||||
{ 4, ST+F+S+U }, /* 11 1 1010: stfsux */
|
{ 4, ST+F+S+U }, /* 11 1 1010: stfsux */
|
||||||
{ 8, ST+F+U }, /* 11 1 1011: stfdux */
|
{ 8, ST+F+U }, /* 11 1 1011: stfdux */
|
||||||
INVALID, /* 11 1 1100 */
|
INVALID, /* 11 1 1100 */
|
||||||
INVALID, /* 11 1 1101 */
|
{ 4, LD+F }, /* 11 1 1101: lfiwzx */
|
||||||
INVALID, /* 11 1 1110 */
|
INVALID, /* 11 1 1110 */
|
||||||
INVALID, /* 11 1 1111 */
|
INVALID, /* 11 1 1111 */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue