From: Marko Kovacevic Date: Tue, 12 Dec 2017 14:03:25 +0000 (+0000) Subject: power: clean common header X-Git-Tag: spdx-start~733 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=08272999bd92c35df567de79ce9c1126b730ca2d;p=dpdk.git power: clean common header Rename private header file rte_power_common.h to power_common.h to prevent private functions from leaking into the documentation. Signed-off-by: Marko Kovacevic Acked-by: David Hunt --- diff --git a/lib/librte_power/power_common.h b/lib/librte_power/power_common.h new file mode 100644 index 0000000000..feeb5777b7 --- /dev/null +++ b/lib/librte_power/power_common.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2010-2014 Intel Corporation + */ + +#ifndef _POWER_COMMON_H_ +#define _POWER_COMMON_H_ + +#define RTE_POWER_INVALID_FREQ_INDEX (~0) + +#endif /* _POWER_COMMON_H_ */ diff --git a/lib/librte_power/rte_power.c b/lib/librte_power/rte_power.c index 1e6c842f70..38903a7bbe 100644 --- a/lib/librte_power/rte_power.c +++ b/lib/librte_power/rte_power.c @@ -7,7 +7,7 @@ #include "rte_power.h" #include "rte_power_acpi_cpufreq.h" #include "rte_power_kvm_vm.h" -#include "rte_power_common.h" +#include "power_common.h" enum power_management_env global_default_env = PM_ENV_NOT_SET; diff --git a/lib/librte_power/rte_power_acpi_cpufreq.c b/lib/librte_power/rte_power_acpi_cpufreq.c index d31ca3c8d0..6c87e8e37d 100644 --- a/lib/librte_power/rte_power_acpi_cpufreq.c +++ b/lib/librte_power/rte_power_acpi_cpufreq.c @@ -16,7 +16,7 @@ #include #include "rte_power_acpi_cpufreq.h" -#include "rte_power_common.h" +#include "power_common.h" #ifdef RTE_LIBRTE_POWER_DEBUG #define POWER_DEBUG_TRACE(fmt, args...) do { \ diff --git a/lib/librte_power/rte_power_common.h b/lib/librte_power/rte_power_common.h deleted file mode 100644 index bfc16e59ac..0000000000 --- a/lib/librte_power/rte_power_common.h +++ /dev/null @@ -1,10 +0,0 @@ -/* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2010-2014 Intel Corporation - */ - -#ifndef RTE_POWER_COMMON_H_ -#define RTE_POWER_COMMON_H_ - -#define RTE_POWER_INVALID_FREQ_INDEX (~0) - -#endif /* RTE_POWER_COMMON_H_ */ diff --git a/lib/librte_power/rte_power_kvm_vm.c b/lib/librte_power/rte_power_kvm_vm.c index fa85226eac..caef4d92c7 100644 --- a/lib/librte_power/rte_power_kvm_vm.c +++ b/lib/librte_power/rte_power_kvm_vm.c @@ -9,7 +9,7 @@ #include "guest_channel.h" #include "channel_commands.h" #include "rte_power_kvm_vm.h" -#include "rte_power_common.h" +#include "power_common.h" #define FD_PATH "/dev/virtio-ports/virtio.serial.port.poweragent"