Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/machine_func.c

    rf9ab562 r8f9d70b  
    4242#include <arch/mach/integratorcp/integratorcp.h>
    4343#include <arch/mach/beagleboardxm/beagleboardxm.h>
     44#include <arch/mach/beaglebone/beaglebone.h>
     45#include <arch/mach/raspberrypi/raspberrypi.h>
    4446
    4547/** Pointer to machine_ops structure being used. */
     
    5557#elif defined(MACHINE_beagleboardxm)
    5658        machine_ops = &bbxm_machine_ops;
     59#elif defined(MACHINE_beaglebone)
     60        machine_ops = &bbone_machine_ops;
     61#elif defined(MACHINE_raspberrypi)
     62        machine_ops = &raspberrypi_machine_ops;
    5763#else
    5864#error Machine type not defined.
Note: See TracChangeset for help on using the changeset viewer.