Skip to content

Commit

Permalink
sh: hp6xx driver compile fixes.
Browse files Browse the repository at this point in the history
Trivial compilation fixes for the hp6xx drivers.

Signed-off-by: Kristoffer Ericson <Kristoffer_e1@hotmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Kristoffer Ericson authored and Paul Mundt committed May 7, 2007
1 parent d29c91c commit 5753171
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/input/touchscreen/hp680_ts_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
static void do_softint(void *data);

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

static void do_softint(void *data)
{
Expand Down
2 changes: 1 addition & 1 deletion sound/oss/sh_dac_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static void dac_audio_set_rate(void)
unsigned long interval;
struct clk *clk;

clk = clk_get("module_clk");
clk = clk_get(NULL, "module_clk");
interval = (clk_get_rate(clk) / 4) / rate;
clk_put(clk);
ctrl_outl(interval, TMU1_TCOR);
Expand Down

0 comments on commit 5753171

Please sign in to comment.