Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 9 Apr 2002 11:46:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 9 Apr 2002 11:46:25 -0400 Received: from swazi.realnet.co.sz ([196.28.7.2]:1702 "HELO netfinity.realnet.co.sz") by vger.kernel.org with SMTP id ; Tue, 9 Apr 2002 11:46:25 -0400 Date: Tue, 9 Apr 2002 17:31:27 +0200 (SAST) From: Zwane Mwaikambo X-X-Sender: zwane@netfinity.realnet.co.sz To: Rob Radez Cc: Corey Minyard , , Alan Cox Subject: Re: Further WatchDog Updates In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 9 Apr 2002, Rob Radez wrote: > Oops, yea, I forgot return values. I'll fix that up. I got rid of > sc1200wdt_status because it returns bit 1, which is defined as WDIOF_OVERHEAT > I suppose it would be possible to return WDIOF_KEEPALIVEPING instead. > So something like if(ret & 0x01) return WDIOF_KEEPALIVEPING;? Yes, that should be fine. But don't forget its inactive high ;) so its... return !(ret & 0x01) ? WDIOF_KEEPALIVEPING : 0; Thanks, Zwane -- http://function.linuxpower.ca - 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/