On 14/09/23, Philippe Mathieu-Daudé wrote:
> We use the '-common.c' suffix for target agnostic units.
> This file is target specific, rename it using the '-target'
> suffix.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> accel/{accel-common.c => accel-target.c} | 0
> accel/meson.build | 2 +-
> 2 files changed, 1 insertion(+), 1 deletion(-)
> rename accel/{accel-common.c => accel-target.c} (100%)
>
> diff --git a/accel/accel-common.c b/accel/accel-target.c
> similarity index 100%
> rename from accel/accel-common.c
> rename to accel/accel-target.c
> diff --git a/accel/meson.build b/accel/meson.build
> index 76f3cbc530..fda3157a6e 100644
> --- a/accel/meson.build
> +++ b/accel/meson.build
> @@ -1,4 +1,4 @@
> -specific_ss.add(files('accel-common.c'))
> +specific_ss.add(files('accel-target.c'))
> system_ss.add(files('accel-softmmu.c', 'accel-blocker.c'))
> user_ss.add(files('accel-user.c'))
>
> --
> 2.41.0
>
Reviewed-by: Anton Johansson <anjo@rev.ng>