Message ID | 1421745495-10702-1-git-send-email-pablo.de.lara.guarch@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
> 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
diff --git a/lib/librte_power/rte_power.h b/lib/librte_power/rte_power.h index 9338069..7d57359 100644 --- a/lib/librte_power/rte_power.h +++ b/lib/librte_power/rte_power.h @@ -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 }
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(-)