summaryrefslogtreecommitdiffstats
path: root/arch/openrisc/mm
Commit message (Collapse)AuthorAgeFilesLines
* arch/openrisc/mm/init.c: trivial: use BUG_ONJulia Lawall2012-02-171-2/+1
| | | | | | | | | | | | | | | | | | | | Use BUG_ON(x) rather than if(x) BUG(); The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ identifier x; @@ -if (x) BUG(); +BUG_ON(x); @@ identifier x; @@ -if (!x) BUG(); +BUG_ON(!x); // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Jonas Bonn <jonas@southpole.se>
* OpenRISC: Build infrastructureJonas Bonn2011-07-221-0/+5
| | | | | Signed-off-by: Jonas Bonn <jonas@southpole.se> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
* OpenRISC: Memory managementJonas Bonn2011-07-224-0/+951
Signed-off-by: Jonas Bonn <jonas@southpole.se> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
OpenPOWER on IntegriCloud