Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sat, 3 Aug 2002 14:21:27 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sat, 3 Aug 2002 14:14:04 -0400 Received: from caramon.arm.linux.org.uk ([212.18.232.186]:11024 "EHLO caramon.arm.linux.org.uk") by vger.kernel.org with ESMTP id ; Sat, 3 Aug 2002 14:12:55 -0400 To: Linus Torvalds CC: From: Russell King Subject: [PATCH] 10: 2.5.29-wdt977 Message-Id: Date: Sat, 03 Aug 2002 19:16:18 +0100 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 940 Lines: 26 This patch has been verified to apply cleanly to 2.5.30 Bitops are used with on the timer_alive variable. Therefore, timer_alive needs to be "unsigned long" not "int". drivers/char/wdt977.c | 2 +- 1 files changed, 1 insertion, 1 deletion diff -urN orig/drivers/char/wdt977.c linux/drivers/char/wdt977.c --- orig/drivers/char/wdt977.c Sat May 25 23:13:25 2002 +++ linux/drivers/char/wdt977.c Wed Jun 12 14:13:47 2002 @@ -39,7 +39,7 @@ static int timeout = DEFAULT_TIMEOUT*60; /* TO in seconds from user */ static int timeoutM = DEFAULT_TIMEOUT; /* timeout in minutes */ -static int timer_alive; +static unsigned long timer_alive; static int testmode; MODULE_PARM(timeout, "i"); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/