Skip to content

Commit

Permalink
staging: brcm80211: removed unused phy logging
Browse files Browse the repository at this point in the history
Macro's were not used so they were removed.

Reviewed-by: Arend van Spriel <arend@broadcom.com>
Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Aug 26, 2011
1 parent cc69855 commit 38a02ac
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 22 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/brcm80211/brcmsmac/mac80211_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ MODULE_DEVICE_TABLE(pci, brcms_pci_id_table);
#ifdef BCMDBG
static int msglevel = 0xdeadbeef;
module_param(msglevel, int, 0);
static int phymsglevel = 0xdeadbeef;
module_param(phymsglevel, int, 0);
#endif /* BCMDBG */

#define HW_TO_WL(hw) (hw->priv)
Expand Down Expand Up @@ -1282,8 +1280,6 @@ static int __init brcms_module_init(void)
#ifdef BCMDBG
if (msglevel != 0xdeadbeef)
brcm_msg_level = msglevel;
if (phymsglevel != 0xdeadbeef)
phyhal_msg_level = phymsglevel;
#endif /* BCMDBG */

error = pci_register_driver(&brcms_pci_driver);
Expand Down
2 changes: 0 additions & 2 deletions drivers/staging/brcm80211/brcmsmac/phy/phy_cmn.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
#include "phy_lcn.h"
#include "phyreg_n.h"

u32 phyhal_msg_level = PHYHAL_ERROR;

struct chan_info_basic {
u16 chan;
u16 freq;
Expand Down
16 changes: 0 additions & 16 deletions drivers/staging/brcm80211/brcmsmac/phy/phy_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,6 @@

#define PHY_VERSION { 1, 82, 8, 0 }

#define PHYHAL_ERROR 0x0001
#define PHYHAL_TRACE 0x0002
#define PHYHAL_INFORM 0x0004

extern u32 phyhal_msg_level;

#define PHY_INFORM_ON() (phyhal_msg_level & PHYHAL_INFORM)
#define PHY_THERMAL_ON() (phyhal_msg_level & PHYHAL_THERMAL)
#define PHY_CAL_ON() (phyhal_msg_level & PHYHAL_CAL)

#ifdef BOARD_TYPE
#define BOARDTYPE(_type) BOARD_TYPE
#else
#define BOARDTYPE(_type) _type
#endif

#define LCNXN_BASEREV 16

struct phy_shim_info;
Expand Down

0 comments on commit 38a02ac

Please sign in to comment.