[dpdk-dev] power: added missing extern keyword in rte_power.h
Commit Message
rte_power_freq_min function did not include "extern" keyword,
causing linking errors.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Reported-by: Ildar Mustafin <imustafin@bk.ru>
---
lib/librte_power/rte_power.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Comments
> rte_power_freq_min function did not include "extern" keyword,
> causing linking errors.
>
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> Reported-by: Ildar Mustafin <imustafin@bk.ru>
Fixes: 445c6528b55f ("power: common interface for guest and host")
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Applied
Thanks
@@ -242,7 +242,7 @@ extern rte_power_freq_change_t rte_power_freq_max;
* - 0 on success without frequency changed.
* - Negative on error.
*/
-rte_power_freq_change_t rte_power_freq_min;
+extern rte_power_freq_change_t rte_power_freq_min;
#ifdef __cplusplus
}