Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed457037 authored by Holger Schurig's avatar Holger Schurig Committed by John W. Linville
Browse files

[PATCH] libertas: move contents of fw.h to decl.h



Also removes some useless "extern" declarations from function declaration.

Signed-off-by: default avatarHolger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 208fdd2f
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -66,15 +66,18 @@ void libertas_ps_wakeup(wlan_private * priv, int wait_option);

void libertas_tx_runqueue(wlan_private *priv);

extern struct chan_freq_power *libertas_find_cfp_by_band_and_channel(
struct chan_freq_power *libertas_find_cfp_by_band_and_channel(
				wlan_adapter * adapter, u8 band, u16 channel);

extern void libertas_mac_event_disconnected(wlan_private * priv);
void libertas_mac_event_disconnected(wlan_private * priv);

void libertas_send_iwevcustom_event(wlan_private * priv, s8 * str);

/* fw.c */
int libertas_init_fw(wlan_private * priv);

/* main.c */
extern struct chan_freq_power *libertas_get_region_cfp_table(u8 region, u8 band,
struct chan_freq_power *libertas_get_region_cfp_table(u8 region, u8 band,
						             int *cfp_no);
wlan_private *wlan_add_card(void *card);
int libertas_activate_card(wlan_private *priv);
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
#include "defs.h"
#include "decl.h"
#include "dev.h"
#include "fw.h"
#include "wext.h"
#include "if_usb.h"

+0 −9
Original line number Diff line number Diff line
/**
  * This header file contains FW interface related definitions.
  */
#ifndef _WLAN_FW_H_
#define _WLAN_FW_H_

int libertas_init_fw(wlan_private * priv);

#endif				/* _WLAN_FW_H_ */
+0 −1
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
#include "host.h"
#include "decl.h"
#include "dev.h"
#include "fw.h"
#include "wext.h"
#include "debugfs.h"
#include "assoc.h"