diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /drivers/video/pvr2fb.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
Diffstat (limited to 'drivers/video/pvr2fb.c')
-rw-r--r-- | drivers/video/pvr2fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/pvr2fb.c b/drivers/video/pvr2fb.c index 78dc59a1751b..c7bc80921f16 100644 --- a/drivers/video/pvr2fb.c +++ b/drivers/video/pvr2fb.c | |||
@@ -209,7 +209,7 @@ static int pvr2fb_set_par(struct fb_info *info); | |||
209 | static void pvr2_update_display(struct fb_info *info); | 209 | static void pvr2_update_display(struct fb_info *info); |
210 | static void pvr2_init_display(struct fb_info *info); | 210 | static void pvr2_init_display(struct fb_info *info); |
211 | static void pvr2_do_blank(void); | 211 | static void pvr2_do_blank(void); |
212 | static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id, struct pt_regs *fp); | 212 | static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id); |
213 | static int pvr2_init_cable(void); | 213 | static int pvr2_init_cable(void); |
214 | static int pvr2_get_param(const struct pvr2_params *p, const char *s, | 214 | static int pvr2_get_param(const struct pvr2_params *p, const char *s, |
215 | int val, int size); | 215 | int val, int size); |
@@ -626,7 +626,7 @@ static void pvr2_do_blank(void) | |||
626 | is_blanked = do_blank > 0 ? do_blank : 0; | 626 | is_blanked = do_blank > 0 ? do_blank : 0; |
627 | } | 627 | } |
628 | 628 | ||
629 | static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id, struct pt_regs *fp) | 629 | static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id) |
630 | { | 630 | { |
631 | struct fb_info *info = dev_id; | 631 | struct fb_info *info = dev_id; |
632 | 632 | ||