Ignore:
File:
1 edited

Legend:

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

    r8ba5c67 r9d58539  
    4242#include <arch/mach/integratorcp/integratorcp.h>
    4343#include <arch/mach/testarm/testarm.h>
    44 #include <arch/mach/beagleboardxm/beagleboardxm.h>
    45 #include <arch/mach/beaglebone/beaglebone.h>
    4644
    4745/** Pointer to machine_ops structure being used. */
     
    5755#elif defined(MACHINE_integratorcp)
    5856        machine_ops = &icp_machine_ops;
    59 #elif defined(MACHINE_beagleboardxm)
    60         machine_ops = &bbxm_machine_ops;
    61 #elif defined(MACHINE_beaglebone)
    62         machine_ops = &bbone_machine_ops;
    6357#else
    6458#error Machine type not defined.
     
    137131}
    138132
    139 const char * machine_get_platform_name(void)
    140 {
    141         if (machine_ops->machine_get_platform_name)
    142                 return machine_ops->machine_get_platform_name();
    143         return NULL;
    144 }
    145133/** @}
    146134 */
Note: See TracChangeset for help on using the changeset viewer.