Changeset 0f3fc9b in mainline for kernel/arch/ppc32/include


Ignore:
Timestamp:
2007-01-22T13:34:55Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
726e1043
Parents:
e7b7be3f
Message:

typedef elimination

Location:
kernel/arch/ppc32/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/include/context.h

    re7b7be3f r0f3fc9b  
    4040#define SP_DELTA        16
    4141
    42 struct context {
     42typedef struct {
    4343        uintptr_t sp;
    4444        uintptr_t pc;
     
    6868       
    6969        ipl_t ipl;
    70 } __attribute__ ((packed));
     70} __attribute__ ((packed)) context_t;
    7171
    7272#endif
  • kernel/arch/ppc32/include/fpu_context.h

    re7b7be3f r0f3fc9b  
    4040#endif
    4141
    42 struct fpu_context {
     42typedef struct {
    4343        uint64_t fr14;
    4444        uint64_t fr15;
     
    6060        uint64_t fr31;
    6161        uint32_t fpscr;
    62 } __attribute__ ((packed));
     62} __attribute__ ((packed)) fpu_context_t;
    6363
    6464#endif
Note: See TracChangeset for help on using the changeset viewer.