From owner-p4-projects@FreeBSD.ORG Tue Aug 10 23:04:18 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 79A3E16A4D0; Tue, 10 Aug 2004 23:04:18 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C3FF16A4CE for ; Tue, 10 Aug 2004 23:04:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26F7A43D49 for ; Tue, 10 Aug 2004 23:04:18 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AN4IUQ038136 for ; Tue, 10 Aug 2004 23:04:18 GMT (envelope-from scottl@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AN4Hg6038133 for perforce@freebsd.org; Tue, 10 Aug 2004 23:04:17 GMT (envelope-from scottl@freebsd.org) Date: Tue, 10 Aug 2004 23:04:17 GMT Message-Id: <200408102304.i7AN4Hg6038133@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to scottl@freebsd.org using -f From: Scott Long To: Perforce Change Reviews Subject: PERFORCE change 59352 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 23:04:19 -0000 http://perforce.freebsd.org/chv.cgi?CH=59352 Change 59352 by scottl@scottl-wv1u on 2004/08/10 23:03:41 Revert the driver interrupt prototype change. That work is not going to happen in this branch, if at all. Affected files ... .. //depot/projects/newint/sys/sys/bus.h#3 edit Differences ... ==== //depot/projects/newint/sys/sys/bus.h#3 (text+ko) ==== @@ -88,14 +88,7 @@ typedef struct devclass *devclass_t; #define device_method_t kobj_method_t -enum intr_rtn { - INTR_RTN_NONE = 0, /* No action. Default compat for now */ - INTR_RTN_OWNER = 1, /* Driver hardware generated the interrupt */ - INTR_RTN_HANDLED = 2, /* Driver acknowledged the interrupt */ - INTR_RTN_ITHREAD = 4 /* Driver wants to run its ithread */ -}; - -typedef int driver_intr_t(void*); +typedef void driver_intr_t(void*); /* * Interrupt type bits. These flags are used both by newbus interrupt