Changes in kernel/arch/arm32/src/machine_func.c [a19dc957:2686705] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/machine_func.c
ra19dc957 r2686705 42 42 #include <arch/mach/integratorcp/integratorcp.h> 43 43 #include <arch/mach/testarm/testarm.h> 44 #include <arch/mach/beagleboardxm/beagleboardxm.h>45 44 46 45 /** Pointer to machine_ops structure being used. */ … … 56 55 #elif defined(MACHINE_integratorcp) 57 56 machine_ops = &icp_machine_ops; 58 #elif defined(MACHINE_beagleboardxm)59 machine_ops = &bbxm_machine_ops;60 57 #else 61 58 #error Machine type not defined. … … 134 131 } 135 132 136 const char * machine_get_platform_name(void)137 {138 if (machine_ops->machine_get_platform_name)139 return machine_ops->machine_get_platform_name();140 return NULL;141 }142 133 /** @} 143 134 */
Note:
See TracChangeset
for help on using the changeset viewer.