Skip to content

Commit

Permalink
drivers/watchdog/geodewdt.c: build fix
Browse files Browse the repository at this point in the history
* Wim Van Sebroeck <wim@iguana.be> wrote:

> Author: Jordan Crouse <jordan.crouse@amd.com>
> Date:   Mon Jan 21 10:07:00 2008 -0700
>
>     [WATCHDOG] Add a watchdog driver based on the CS5535/CS5536 MFGPT timers

-tip testing found the following build failure on latest -git:

  drivers/watchdog/geodewdt.c: In function 'geodewdt_probe':
  drivers/watchdog/geodewdt.c:225: error: too many arguments to function 'geode_mfgpt_alloc_timer'
  make[1]: *** [drivers/watchdog/geodewdt.o] Error 1
  make: *** [drivers/watchdog/geodewdt.o] Error 2

with this config:

  http://redhat.com/~mingo/misc/config-Fri_May_30_15_19_52_CEST_2008.bad

find the fix below.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed May 30, 2008
1 parent 1beee8d commit 57f50ca
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/watchdog/geodewdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ geodewdt_probe(struct platform_device *dev)
{
int ret, timer;

timer = geode_mfgpt_alloc_timer(MFGPT_TIMER_ANY,
MFGPT_DOMAIN_WORKING, THIS_MODULE);
timer = geode_mfgpt_alloc_timer(MFGPT_TIMER_ANY, MFGPT_DOMAIN_WORKING);

if (timer == -1) {
printk(KERN_ERR "geodewdt: No timers were available\n");
Expand Down

0 comments on commit 57f50ca

Please sign in to comment.