Changeset 03362fbd in mainline for kernel/arch/arm32/src/machine_func.c
- Timestamp:
- 2013-02-09T23:14:45Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 22dfd38
- Parents:
- b5d2e57 (diff), 005b765 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/arch/arm32/src/machine_func.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/machine_func.c
rb5d2e57 r03362fbd 41 41 #include <arch/mach/gta02/gta02.h> 42 42 #include <arch/mach/integratorcp/integratorcp.h> 43 #include <arch/mach/ testarm/testarm.h>43 #include <arch/mach/beagleboardxm/beagleboardxm.h> 44 44 45 45 /** Pointer to machine_ops structure being used. */ … … 51 51 #if defined(MACHINE_gta02) 52 52 machine_ops = >a02_machine_ops; 53 #elif defined(MACHINE_testarm)54 machine_ops = &gxemul_machine_ops;55 53 #elif defined(MACHINE_integratorcp) 56 54 machine_ops = &icp_machine_ops; 55 #elif defined(MACHINE_beagleboardxm) 56 machine_ops = &bbxm_machine_ops; 57 57 #else 58 58 #error Machine type not defined. … … 131 131 } 132 132 133 const char * machine_get_platform_name(void) 134 { 135 if (machine_ops->machine_get_platform_name) 136 return machine_ops->machine_get_platform_name(); 137 return NULL; 138 } 133 139 /** @} 134 140 */
Note:
See TracChangeset
for help on using the changeset viewer.
