@@ -946,8 +946,8 @@ hwloc__xml_import_object(hwloc_topology_t topology,
946
946
}
947
947
948
948
static int
949
- hwloc__xml_v2import_support (hwloc_topology_t topology ,
950
- hwloc__xml_import_state_t state )
949
+ hwloc__xml_import_support (hwloc_topology_t topology ,
950
+ hwloc__xml_import_state_t state )
951
951
{
952
952
char * name = NULL ;
953
953
int value = 1 ; /* value is optional */
@@ -1020,9 +1020,9 @@ hwloc__xml_v2import_support(hwloc_topology_t topology,
1020
1020
}
1021
1021
1022
1022
static int
1023
- hwloc__xml_v2import_distances (hwloc_topology_t topology ,
1024
- hwloc__xml_import_state_t state ,
1025
- int heterotypes )
1023
+ hwloc__xml_import_distances (hwloc_topology_t topology ,
1024
+ hwloc__xml_import_state_t state ,
1025
+ int heterotypes )
1026
1026
{
1027
1027
hwloc_obj_type_t unique_type = HWLOC_OBJ_TYPE_NONE ;
1028
1028
hwloc_obj_type_t * different_types = NULL ;
@@ -1776,15 +1776,15 @@ hwloc_look_xml(struct hwloc_backend *backend, struct hwloc_disc_status *dstatus)
1776
1776
if (!ret )
1777
1777
break ;
1778
1778
if (!strcmp (tag , "distances2" )) {
1779
- ret = hwloc__xml_v2import_distances (topology , & childstate , 0 );
1779
+ ret = hwloc__xml_import_distances (topology , & childstate , 0 );
1780
1780
if (ret < 0 )
1781
1781
goto failed ;
1782
1782
} else if (!strcmp (tag , "distances2hetero" )) {
1783
- ret = hwloc__xml_v2import_distances (topology , & childstate , 1 );
1783
+ ret = hwloc__xml_import_distances (topology , & childstate , 1 );
1784
1784
if (ret < 0 )
1785
1785
goto failed ;
1786
1786
} else if (!strcmp (tag , "support" )) {
1787
- ret = hwloc__xml_v2import_support (topology , & childstate );
1787
+ ret = hwloc__xml_import_support (topology , & childstate );
1788
1788
if (ret < 0 )
1789
1789
goto failed ;
1790
1790
} else if (!strcmp (tag , "memattr" )) {
0 commit comments