Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56792
b: refs/heads/master
c: 049fa57
h: refs/heads/master
v: v3
  • Loading branch information
Kristoffer Ericson authored and Paul Mundt committed May 14, 2007
1 parent eb27161 commit 9922653
Show file tree
Hide file tree
Showing 2 changed files with 4 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: ad05acd6e95e99f56da304ec3566d81061ab67f9
refs/heads/master: 049fa57ce3b22d9f5acb251070941b630ee71d6e
7 changes: 3 additions & 4 deletions trunk/drivers/input/touchscreen/hp680_ts_input.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include <linux/input.h>
#include <linux/module.h>
#include <linux/init.h>

#include <linux/interrupt.h>
#include <asm/io.h>
#include <asm/delay.h>
Expand All @@ -18,12 +17,12 @@
#define PHDR 0xa400012e
#define SCPDR 0xa4000136

static void do_softint(void *data);
static void do_softint(struct work_struct *work);

static struct input_dev *hp680_ts_dev;
static DECLARE_WORK(work, do_softint);
static DECLARE_DELAYED_WORK(work, do_softint);

static void do_softint(void *data)
static void do_softint(struct work_struct *work)
{
int absx = 0, absy = 0;
u8 scpdr;
Expand Down

0 comments on commit 9922653

Please sign in to comment.