Changeset e1cad18 in mainline


Ignore:
Timestamp:
2013-12-28T21:29:47Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a13328
Parents:
1ba8cb9
Message:

use proper variable type and symbol linkage

Location:
boot/arch/sparc32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc32/include/ambapp.h

    r1ba8cb9 re1cad18  
    150150} __attribute__((packed)) mctrl_mcfg2_t;
    151151
    152 extern amba_device_t amba_devices[AMBAPP_MAX_DEVICES];
    153 extern int amba_devices_found;
    154 extern bool amba_fake;
    155152extern uintptr_t amba_uart_base;
    156153
  • boot/arch/sparc32/src/ambapp.c

    r1ba8cb9 re1cad18  
    4949#include <str.h>
    5050#include <errno.h>
     51
     52uintptr_t amba_uart_base;
     53
     54static amba_device_t amba_devices[AMBAPP_MAX_DEVICES];
     55static unsigned int amba_devices_found;
     56static bool amba_fake;
    5157
    5258static void ambapp_scan_area(uintptr_t, unsigned int);
Note: See TracChangeset for help on using the changeset viewer.