staging: ath6kl: remove-typedef DEV_SCATTER_DMA_VIRTUAL_INFO
remove-typedef -s DEV_SCATTER_DMA_VIRTUAL_INFO \ "struct dev_scatter_dma_virtual_info" drivers/staging/ath6kl/ Cc: Naveen Singh <naveen.singh@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
84fd335f2d
commit
9107a26ebc
2 changed files with 7 additions and 7 deletions
|
@ -585,7 +585,7 @@ void DevDumpRegisters(struct ar6k_device *pDev,
|
|||
}
|
||||
|
||||
|
||||
#define DEV_GET_VIRT_DMA_INFO(p) ((DEV_SCATTER_DMA_VIRTUAL_INFO *)((p)->HIFPrivate[0]))
|
||||
#define DEV_GET_VIRT_DMA_INFO(p) ((struct dev_scatter_dma_virtual_info *)((p)->HIFPrivate[0]))
|
||||
|
||||
static HIF_SCATTER_REQ *DevAllocScatterReq(HIF_DEVICE *Context)
|
||||
{
|
||||
|
@ -754,10 +754,10 @@ static int DevSetupVirtualScatterSupport(struct ar6k_device *pDev)
|
|||
int status = 0;
|
||||
int bufferSize, sgreqSize;
|
||||
int i;
|
||||
DEV_SCATTER_DMA_VIRTUAL_INFO *pVirtualInfo;
|
||||
struct dev_scatter_dma_virtual_info *pVirtualInfo;
|
||||
HIF_SCATTER_REQ *pReq;
|
||||
|
||||
bufferSize = sizeof(DEV_SCATTER_DMA_VIRTUAL_INFO) +
|
||||
bufferSize = sizeof(struct dev_scatter_dma_virtual_info) +
|
||||
2 * (A_GET_CACHE_LINE_BYTES()) + AR6K_MAX_TRANSFER_SIZE_PER_SCATTER;
|
||||
|
||||
sgreqSize = sizeof(HIF_SCATTER_REQ) +
|
||||
|
@ -775,8 +775,8 @@ static int DevSetupVirtualScatterSupport(struct ar6k_device *pDev)
|
|||
A_MEMZERO(pReq, sgreqSize);
|
||||
|
||||
/* the virtual DMA starts after the scatter request struct */
|
||||
pVirtualInfo = (DEV_SCATTER_DMA_VIRTUAL_INFO *)((u8 *)pReq + sgreqSize);
|
||||
A_MEMZERO(pVirtualInfo, sizeof(DEV_SCATTER_DMA_VIRTUAL_INFO));
|
||||
pVirtualInfo = (struct dev_scatter_dma_virtual_info *)((u8 *)pReq + sgreqSize);
|
||||
A_MEMZERO(pVirtualInfo, sizeof(struct dev_scatter_dma_virtual_info));
|
||||
|
||||
pVirtualInfo->pVirtDmaBuffer = &pVirtualInfo->DataArea[0];
|
||||
/* align buffer to cache line in case host controller can actually DMA this */
|
||||
|
|
|
@ -322,10 +322,10 @@ int DoMboxHWTest(struct ar6k_device *pDev);
|
|||
#endif
|
||||
|
||||
/* completely virtual */
|
||||
typedef struct _DEV_SCATTER_DMA_VIRTUAL_INFO {
|
||||
struct dev_scatter_dma_virtual_info {
|
||||
u8 *pVirtDmaBuffer; /* dma-able buffer - CPU accessible address */
|
||||
u8 DataArea[1]; /* start of data area */
|
||||
} DEV_SCATTER_DMA_VIRTUAL_INFO;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue