Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338617
b: refs/heads/master
c: 3192fcb
h: refs/heads/master
i:
  338615: ac07dad
v: v3
  • Loading branch information
Kuninori Morimoto authored and Felipe Balbi committed Oct 31, 2012
1 parent e60ccee commit b2837d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 797b4e145cfaaa787d91ab692b0956f799e77b7a
refs/heads/master: 3192fcb234895d9f313e7270702e1dc069d4a73a
8 changes: 4 additions & 4 deletions trunk/drivers/usb/renesas_usbhs/fifo.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ void usbhs_pkt_start(struct usbhs_pipe *pipe)
/*
* irq enable/disable function
*/
#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, bempsts, e)
#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, brdysts, e)
#define usbhsf_irq_empty_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_bempsts, e)
#define usbhsf_irq_ready_ctrl(p, e) usbhsf_irq_callback_ctrl(p, irq_brdysts, e)
#define usbhsf_irq_callback_ctrl(pipe, status, enable) \
({ \
struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe); \
Expand All @@ -202,9 +202,9 @@ void usbhs_pkt_start(struct usbhs_pipe *pipe)
if (!mod) \
return; \
if (enable) \
mod->irq_##status |= status; \
mod->status |= status; \
else \
mod->irq_##status &= ~status; \
mod->status &= ~status; \
usbhs_irq_callback_update(priv, mod); \
})

Expand Down

0 comments on commit b2837d1

Please sign in to comment.