diff --git a/arch/sim/src/Makefile b/arch/sim/src/Makefile index 7d44ccc6d86..829afc75ee3 100644 --- a/arch/sim/src/Makefile +++ b/arch/sim/src/Makefile @@ -41,12 +41,12 @@ REQUIREDOBJS = $(LINKOBJS) ifeq ($(CONFIG_HOST_X86_64),y) ifeq ($(CONFIG_SIM_M32),y) - ASRCS += up_vfork_x32.S + ASRCS += up_vfork32.S else - ASRCS += up_vfork_x64.S + ASRCS += up_vfork64.S endif else ifeq ($(CONFIG_HOST_X86),y) - ASRCS += up_vfork_x32.S + ASRCS += up_vfork32.S else ifeq ($(CONFIG_HOST_ARM),y) ASRCS += up_vfork_arm.S endif diff --git a/arch/sim/src/sim/up_vfork_x32.S b/arch/sim/src/sim/up_vfork32.S similarity index 99% rename from arch/sim/src/sim/up_vfork_x32.S rename to arch/sim/src/sim/up_vfork32.S index 8262dc0c014..223a0233b89 100644 --- a/arch/sim/src/sim/up_vfork_x32.S +++ b/arch/sim/src/sim/up_vfork32.S @@ -1,5 +1,5 @@ /************************************************************************************ - * arch/sim/src/sim/up_vfork_x32.S + * arch/sim/src/sim/up_vfork32.S * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with diff --git a/arch/sim/src/sim/up_vfork_x64.S b/arch/sim/src/sim/up_vfork64.S similarity index 99% rename from arch/sim/src/sim/up_vfork_x64.S rename to arch/sim/src/sim/up_vfork64.S index 74aa2cf2c68..48da703f539 100644 --- a/arch/sim/src/sim/up_vfork_x64.S +++ b/arch/sim/src/sim/up_vfork64.S @@ -1,5 +1,5 @@ /************************************************************************************ - * arch/sim/src/sim/up_vfork_x64.S + * arch/sim/src/sim/up_vfork64.S * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with