Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | arch/openrisc/mm/init.c: trivial: use BUG_ON | Julia Lawall | 2012-02-17 | 1 | -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 infrastructure | Jonas Bonn | 2011-07-22 | 1 | -0/+5 |
| | | | | | Signed-off-by: Jonas Bonn <jonas@southpole.se> Reviewed-by: Arnd Bergmann <arnd@arndb.de> | ||||
* | OpenRISC: Memory management | Jonas Bonn | 2011-07-22 | 4 | -0/+951 |
Signed-off-by: Jonas Bonn <jonas@southpole.se> Reviewed-by: Arnd Bergmann <arnd@arndb.de> |