Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 187636
b: refs/heads/master
c: 2848552
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks committed Feb 3, 2010
1 parent 061920f commit 5d91c81
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 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: 87aef30eb3c5dac0491c83fe3b90bc61f1df24ec
refs/heads/master: 2848552cef6a14fe4e54e676a61a340c8fd023b3
2 changes: 1 addition & 1 deletion trunk/arch/arm/plat-s5p/include/plat/irqs.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#define S5P_IRQ_VIC0(x) (S5P_VIC0_BASE + (x))
#define S5P_IRQ_VIC1(x) (S5P_VIC1_BASE + (x))

#define S5P_TIMER_IRQ(x) S5P_IRQ(11 + (x))
#define S5P_TIMER_IRQ(x) S5P_IRQ(64 + (x))

#define IRQ_TIMER0 S5P_TIMER_IRQ(0)
#define IRQ_TIMER1 S5P_TIMER_IRQ(1)
Expand Down
7 changes: 7 additions & 0 deletions trunk/arch/arm/plat-samsung/dev-usb-hsotg.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>

#include <mach/irqs.h>
#include <mach/map.h>
Expand All @@ -33,9 +34,15 @@ static struct resource s3c_usb_hsotg_resources[] = {
},
};

static u64 s3c_hsotg_dmamask = DMA_BIT_MASK(32);

struct platform_device s3c_device_usb_hsotg = {
.name = "s3c-hsotg",
.id = -1,
.num_resources = ARRAY_SIZE(s3c_usb_hsotg_resources),
.resource = s3c_usb_hsotg_resources,
.dev = {
.dma_mask = &s3c_hsotg_dmamask,
.coherent_dma_mask = DMA_BIT_MASK(32),
},
};

0 comments on commit 5d91c81

Please sign in to comment.