Skip to content

Commit

Permalink
Staging: sep: fix a conversion thinko
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent ad6b9ab commit c7b7556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/sep/sep_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ static int sep_map_and_alloc_shared_area(struct sep_device *sep,
unsigned long size)
{
/* shared_addr = ioremap_nocache(0xda00000,shared_area_size); */
sep->shared_area = dma_alloc_coherent(&sep->pdev->dev, size,
sep->shared_addr = dma_alloc_coherent(&sep->pdev->dev, size,
&sep->shared_bus, GFP_KERNEL);

if (!sep->shared_addr) {
Expand Down

0 comments on commit c7b7556

Please sign in to comment.