Changeset 7f1c620 in mainline for arch/ppc64/include/boot/boot.h


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc64/include/boot/boot.h

    r991779c5 r7f1c620  
    4949
    5050typedef struct {
    51         __address addr;
    52         __u64 size;
     51        uintptr_t addr;
     52        uint64_t size;
    5353} utask_t;
    5454
    5555typedef struct {
    56         __u32 count;
     56        uint32_t count;
    5757        utask_t tasks[TASKMAP_MAX_RECORDS];
    5858} taskmap_t;
    5959
    6060typedef struct {
    61         __address start;
    62         __u64 size;
     61        uintptr_t start;
     62        uint64_t size;
    6363} memzone_t;
    6464
    6565typedef struct {
    66         __u64 total;
    67         __u32 count;
     66        uint64_t total;
     67        uint32_t count;
    6868        memzone_t zones[MEMMAP_MAX_RECORDS];
    6969} memmap_t;
    7070
    7171typedef struct {
    72         __address addr;
     72        uintptr_t addr;
    7373        unsigned int width;
    7474        unsigned int height;
Note: See TracChangeset for help on using the changeset viewer.