* Fix a few style issues as per Axel

* Rename a few variables to make more sense
* OF_FAILED is a signed int.. fix return of of_address_cells
* OF_FAILED is a signed int.. fix return of of_size_cells


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42497 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexander von Gluck IV
2011-07-26 15:09:18 +00:00
parent b9bedde479
commit bf0e980dc4
4 changed files with 28 additions and 21 deletions
@@ -11,13 +11,14 @@
#define OF_FAILED (-1)
/* global device tree/properties access */
extern int gChosen;
template<typename addressSize>
template<typename AddressSize>
struct of_region {
addressSize base;
AddressSize base;
uint32 size;
};