]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
Fix IP alignment problem
authorOlav Morken <olavmrk@gmail.com>
Fri, 23 Jan 2009 11:56:26 +0000 (12:56 +0100)
committerBen Warren <biggerbadderben@gmail.com>
Thu, 29 Jan 2009 07:59:28 +0000 (23:59 -0800)
commitaf8626e0c08a780d9ded1d9c4883a89355f60e75
tree3e27cb55543d6f6e06106338db7063a67b3af4b8
parent12a8b9db12f82a189ff143a58731007f5469da61
Fix IP alignment problem

This patch removes volatile from:
volatile IP_t *ip = (IP_t *)xip;

Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
using volatile, which causes an exception since xip isn't aligned on a word
boundary.

Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
Signed-off-by: Olav Morken <olavmrk@gmail.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
net/net.c