Changeset de7663f in mainline for boot/arch/mips32


Ignore:
Timestamp:
2007-06-13T18:39:31Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
341140c
Parents:
c03ee1c
Message:

Remove some forgotten \r from arm32 files.
Formatting changes.
Add some correct BOOT_mips32_* guards.

Location:
boot/arch/mips32/loader
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/mips32/loader/asm.h

    rc03ee1c rde7663f  
    2727 */
    2828
    29 #ifndef __ASM_H__
    30 #define __ASM_H__
     29#ifndef BOOT_mips32_ASM_H_
     30#define BOOT_mips32_ASM_H_
    3131
    3232#define PAGE_SIZE 16384
    3333#define PAGE_WIDTH 14
    3434
    35 #define memcpy(dst, src, cnt)  __builtin_memcpy((dst), (src), (cnt))
     35#define memcpy(dst, src, cnt)   __builtin_memcpy((dst), (src), (cnt))
    3636
    3737void jump_to_kernel(void *entry, void *bootinfo, unsigned int bootinfo_size) __attribute__((noreturn));
  • boot/arch/mips32/loader/main.h

    rc03ee1c rde7663f  
    2727 */
    2828
    29 #ifndef __MAIN_H__
    30 #define __MAIN_H__
     29#ifndef BOOT_mips32_MAIN_H_
     30#define BOOT_mips32_MAIN_H_
    3131
    3232/** Align to the nearest higher address.
  • boot/arch/mips32/loader/msim.h

    rc03ee1c rde7663f  
    2727 */
    2828
    29 #ifndef __MSIM_H__
    30 #define __MSIM_H__
     29#ifndef BOOT_mips32_MSIM_H_
     30#define BOOT_mips32_MSIM_H_
    3131
    3232extern void init(void);
  • boot/arch/mips32/loader/regname.h

    rc03ee1c rde7663f  
    2727 */
    2828
    29 #ifndef __mips32_REGNAME_H_
    30 #define __mips32_REGNAME_H_
     29#ifndef BOOT_mips32_REGNAME_H_
     30#define BOOT_mips32_REGNAME_H_
    3131
    3232#define zero    0
     
    8686#define eepc            30
    8787
    88 
    8988#endif /* _REGNAME_H_ */
  • boot/arch/mips32/loader/types.h

    rc03ee1c rde7663f  
    2727 */
    2828
    29 #ifndef TYPES_H__
    30 #define TYPES_H__
     29#ifndef BOOT_mips32_TYPES_H_
     30#define BOOT_mips32_TYPES_H_
    3131
    3232#include <gentypes.h>
Note: See TracChangeset for help on using the changeset viewer.