Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 151074
b: refs/heads/master
c: 1bd9784
h: refs/heads/master
v: v3
  • Loading branch information
Geert Uytterhoeven authored and Benjamin Herrenschmidt committed Jun 15, 2009
1 parent fe9fba9 commit 5a50673
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3b94fd800cc7eb59c91ccb55326cdaf589b0e88
refs/heads/master: 1bd9784f5ebb5b1b5a1efb8302d7b57c6483e2e6
6 changes: 3 additions & 3 deletions trunk/drivers/block/ps3vram.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ struct ps3vram_priv {
u64 memory_handle;
u64 context_handle;
u32 *ctrl;
u32 *reports;
void *reports;
u8 *xdr_buf;

u32 *fifo_base;
Expand Down Expand Up @@ -102,9 +102,9 @@ static char *size = "256M";
module_param(size, charp, 0);
MODULE_PARM_DESC(size, "memory size");

static u32 *ps3vram_get_notifier(u32 *reports, int notifier)
static u32 *ps3vram_get_notifier(void *reports, int notifier)
{
return (void *)reports + DMA_NOTIFIER_OFFSET_BASE +
return reports + DMA_NOTIFIER_OFFSET_BASE +
DMA_NOTIFIER_SIZE * notifier;
}

Expand Down

0 comments on commit 5a50673

Please sign in to comment.