9
0
Fork 0

Merge branch 'pu/sandbox-fixes'

This commit is contained in:
Sascha Hauer 2012-06-25 19:19:52 +02:00
commit fd4c51aa28
4 changed files with 17 additions and 2 deletions

View File

@ -7,6 +7,13 @@
* 64 bit
*/
#define INTERNAL_SIZE_T unsigned long
/*
* This is a Kconfig variable in the Kernel, but we want to detect
* this during compile time, so we set it here.
*/
#define CONFIG_PHYS_ADDR_T_64BIT
#endif
typedef unsigned short umode_t;

View File

@ -30,7 +30,8 @@ static void __print_resources(struct resource *res, int indent)
for (i = 0; i < indent; i++)
printf(" ");
printf("0x%08x - 0x%08x (size 0x%08x) %s\n", res->start,
printf(PRINTF_CONVERSION_RESOURCE " - " PRINTF_CONVERSION_RESOURCE
" (size " PRINTF_CONVERSION_RESOURCE ") %s\n", res->start,
res->start + res->size - 1,
res->size, res->name);

View File

@ -388,7 +388,8 @@ static int do_devinfo(int argc, char *argv[])
printf("num : %d\n", i);
if (res->name)
printf("name : %s\n", res->name);
printf("start : 0x%08x\nsize : 0x%08x\n",
printf("start : " PRINTF_CONVERSION_RESOURCE "\nsize : "
PRINTF_CONVERSION_RESOURCE "\n",
res->start, res->size);
}

View File

@ -25,6 +25,12 @@ struct resource {
struct list_head sibling;
};
#ifdef CONFIG_PHYS_ADDR_T_64BIT
#define PRINTF_CONVERSION_RESOURCE "0x%016llx"
#else
#define PRINTF_CONVERSION_RESOURCE "0x%08x"
#endif
/*
* IO resources have these defined flags.
*/