From: Jouni Malinen Date: Tue, 7 Feb 2012 14:26:20 +0000 (+0200) Subject: P2P: Move p2p_add_device() prototype to correct header file X-Git-Tag: aosp-jb-start~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59c8500f18cd379a8c8dc788fc6f01829420fbc4;p=thirdparty%2Fhostap.git P2P: Move p2p_add_device() prototype to correct header file This was supposed to be an internal API to be used only within src/p2p/*.c. Signed-hostap: Jouni Malinen --- diff --git a/src/p2p/p2p.h b/src/p2p/p2p.h index 9c4070c93..ce62a8a49 100644 --- a/src/p2p/p2p.h +++ b/src/p2p/p2p.h @@ -1512,9 +1512,6 @@ void p2p_set_cross_connect(struct p2p_data *p2p, int enabled); int p2p_get_oper_freq(struct p2p_data *p2p, const u8 *iface_addr); -int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, int level, - const u8 *ies, size_t ies_len); - /** * p2p_set_intra_bss_dist - Set intra BSS distribution * @p2p: P2P module context from p2p_init() diff --git a/src/p2p/p2p_i.h b/src/p2p/p2p_i.h index a578bb78e..084f4621a 100644 --- a/src/p2p/p2p_i.h +++ b/src/p2p/p2p_i.h @@ -657,6 +657,8 @@ struct p2p_device * p2p_add_dev_from_go_neg_req(struct p2p_data *p2p, struct p2p_message *msg); void p2p_add_dev_info(struct p2p_data *p2p, const u8 *addr, struct p2p_device *dev, struct p2p_message *msg); +int p2p_add_device(struct p2p_data *p2p, const u8 *addr, int freq, int level, + const u8 *ies, size_t ies_len); struct p2p_device * p2p_get_device(struct p2p_data *p2p, const u8 *addr); struct p2p_device * p2p_get_device_interface(struct p2p_data *p2p, const u8 *addr);