~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/staging/ath6kl/hif/common/hif_sdio_common.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define HIF_DEFAULT_IO_BLOCK_SIZE          128
59
59
 
60
60
    /* set extended MBOX window information for SDIO interconnects */
61
 
static INLINE void SetExtendedMboxWindowInfo(A_UINT16 Manfid, HIF_DEVICE_MBOX_INFO *pInfo)
 
61
static INLINE void SetExtendedMboxWindowInfo(u16 Manfid, struct hif_device_mbox_info *pInfo)
62
62
{
63
63
    switch (Manfid & MANUFACTURER_ID_AR6K_BASE_MASK) {                   
64
64
        case MANUFACTURER_ID_AR6002_BASE :
74
74
            pInfo->GMboxSize = HIF_GMBOX_WIDTH;
75
75
            break;
76
76
        default:
77
 
            A_ASSERT(FALSE);
 
77
            A_ASSERT(false);
78
78
            break;
79
79
    }
80
80
}