staging: brcm80211: Remove abstraction layer for dma alignment
Directly align buffers instead of abstracting it. Signed-off-by: Brett Rudley <brudley@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4766ae6ce7
commit
8fb6b18884
@@ -91,8 +91,6 @@ typedef struct {
|
||||
|
||||
#define BUS_SWAP32(v) (v)
|
||||
|
||||
#define DMA_CONSISTENT_ALIGN osl_dma_consistent_align()
|
||||
extern uint osl_dma_consistent_align(void);
|
||||
extern void *osl_dma_alloc_consistent(osl_t *osh, uint size, u16 align,
|
||||
uint *tot, unsigned long *pap);
|
||||
|
||||
|
@@ -285,11 +285,6 @@ uint osl_pci_slot(osl_t *osh)
|
||||
return PCI_SLOT(((struct pci_dev *)osh->pdev)->devfn);
|
||||
}
|
||||
|
||||
uint osl_dma_consistent_align(void)
|
||||
{
|
||||
return PAGE_SIZE;
|
||||
}
|
||||
|
||||
void *osl_dma_alloc_consistent(osl_t *osh, uint size, u16 align_bits,
|
||||
uint *alloced, unsigned long *pap)
|
||||
{
|
||||
@@ -297,7 +292,7 @@ void *osl_dma_alloc_consistent(osl_t *osh, uint size, u16 align_bits,
|
||||
|
||||
if (align_bits) {
|
||||
u16 align = (1 << align_bits);
|
||||
if (!IS_ALIGNED(DMA_CONSISTENT_ALIGN, align))
|
||||
if (!IS_ALIGNED(PAGE_SIZE, align))
|
||||
size += align;
|
||||
*alloced = size;
|
||||
}
|
||||
|
Reference in New Issue
Block a user