Skip to content

Commit

Permalink
staging: brcm80211: remove redundant CHIPTYPE macro
Browse files Browse the repository at this point in the history
The CHIPTYPE macro simply expands to the macro argument so it is
redundant and as such removed.

Reviewed-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Arend van Spriel authored and Greg Kroah-Hartman committed Dec 2, 2010
1 parent c523ea7 commit 92246bc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
1 change: 0 additions & 1 deletion drivers/staging/brcm80211/include/bcmdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
#define SPI_BUS 6 /* gSPI target */
#define RPC_BUS 7 /* RPC target */

#define CHIPTYPE(bus) (bus)
#define CHIPID(chip) (chip)
#define CHIPREV(rev) (rev)

Expand Down
26 changes: 13 additions & 13 deletions drivers/staging/brcm80211/util/siutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ static si_info_t *si_doattach(si_info_t *sii, uint devid, struct osl_info *osh,
sih->issim = IS_SIM(sih->chippkg);

/* scan for cores */
if (CHIPTYPE(sii->pub.socitype) == SOCI_AI) {
if (sii->pub.socitype == SOCI_AI) {
SI_MSG(("Found chip type AI (0x%08x)\n", w));
/* pass chipc address instead of original core base */
ai_scan(&sii->pub, (void *)cc, devid);
Expand Down Expand Up @@ -765,7 +765,7 @@ void si_deregister_intr_callback(si_t *sih)

uint si_flag(si_t *sih)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_flag(sih);
else {
ASSERT(0);
Expand All @@ -775,7 +775,7 @@ uint si_flag(si_t *sih)

void si_setint(si_t *sih, int siflag)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
ai_setint(sih, siflag);
else
ASSERT(0);
Expand Down Expand Up @@ -807,7 +807,7 @@ bool si_backplane64(si_t *sih)
#ifndef BCMSDIO
uint si_corerev(si_t *sih)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_corerev(sih);
else {
ASSERT(0);
Expand Down Expand Up @@ -850,7 +850,7 @@ void *si_setcore(si_t *sih, uint coreid, uint coreunit)
if (!GOODIDX(idx))
return NULL;

if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_setcoreidx(sih, idx);
else {
#ifdef BCMSDIO
Expand All @@ -865,7 +865,7 @@ void *si_setcore(si_t *sih, uint coreid, uint coreunit)
#ifndef BCMSDIO
void *si_setcoreidx(si_t *sih, uint coreidx)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_setcoreidx(sih, coreidx);
else {
ASSERT(0);
Expand Down Expand Up @@ -917,7 +917,7 @@ void si_restore_core(si_t *sih, uint coreid, uint intr_val)

u32 si_core_cflags(si_t *sih, u32 mask, u32 val)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_core_cflags(sih, mask, val);
else {
ASSERT(0);
Expand All @@ -927,7 +927,7 @@ u32 si_core_cflags(si_t *sih, u32 mask, u32 val)

u32 si_core_sflags(si_t *sih, u32 mask, u32 val)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_core_sflags(sih, mask, val);
else {
ASSERT(0);
Expand All @@ -937,7 +937,7 @@ u32 si_core_sflags(si_t *sih, u32 mask, u32 val)

bool si_iscoreup(si_t *sih)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_iscoreup(sih);
else {
#ifdef BCMSDIO
Expand All @@ -952,15 +952,15 @@ bool si_iscoreup(si_t *sih)
void si_write_wrapperreg(si_t *sih, u32 offset, u32 val)
{
/* only for 4319, no requirement for SOCI_SB */
if (CHIPTYPE(sih->socitype) == SOCI_AI) {
if (sih->socitype == SOCI_AI) {
ai_write_wrap_reg(sih, offset, val);
}
}

uint si_corereg(si_t *sih, uint coreidx, uint regoff, uint mask, uint val)
{

if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
return ai_corereg(sih, coreidx, regoff, mask, val);
else {
#ifdef BCMSDIO
Expand All @@ -975,7 +975,7 @@ uint si_corereg(si_t *sih, uint coreidx, uint regoff, uint mask, uint val)
void si_core_disable(si_t *sih, u32 bits)
{

if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
ai_core_disable(sih, bits);
#ifdef BCMSDIO
else
Expand All @@ -985,7 +985,7 @@ void si_core_disable(si_t *sih, u32 bits)

void si_core_reset(si_t *sih, u32 bits, u32 resetbits)
{
if (CHIPTYPE(sih->socitype) == SOCI_AI)
if (sih->socitype == SOCI_AI)
ai_core_reset(sih, bits, resetbits);
#ifdef BCMSDIO
else
Expand Down

0 comments on commit 92246bc

Please sign in to comment.