From owner-p4-projects@FreeBSD.ORG Fri Oct 13 12:00:37 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6E51516A596; Fri, 13 Oct 2006 12:00:36 +0000 (UTC) X-Original-To: perforce@freebsd.org 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 800A616A4B3 for ; Fri, 13 Oct 2006 12:00:36 +0000 (UTC) (envelope-from piso@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CC0C43D53 for ; Fri, 13 Oct 2006 12:00:36 +0000 (GMT) (envelope-from piso@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9DC0aqs097827 for ; Fri, 13 Oct 2006 12:00:36 GMT (envelope-from piso@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9DC0ajd097822 for perforce@freebsd.org; Fri, 13 Oct 2006 12:00:36 GMT (envelope-from piso@freebsd.org) Date: Fri, 13 Oct 2006 12:00:36 GMT Message-Id: <200610131200.k9DC0ajd097822@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to piso@freebsd.org using -f From: Paolo Pisati To: Perforce Change Reviews Cc: Subject: PERFORCE change 107815 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Oct 2006 12:00:37 -0000 http://perforce.freebsd.org/chv.cgi?CH=107815 Change 107815 by piso@piso_newluxor on 2006/10/13 12:00:35 Fixes compilation of GENERIC on amd64. Affected files ... .. //depot/projects/soc2006/intr_filter/amd64/isa/clock.c#6 edit Differences ... ==== //depot/projects/soc2006/intr_filter/amd64/isa/clock.c#6 (text+ko) ==== @@ -758,7 +758,7 @@ * timecounter to user a simpler algorithm. */ if (!using_lapic_timer) { - intr_add_handler("clk", 0, clkintr, NULL, NULL, + intr_add_handler("clk", 0, (driver_filter_t *)clkintr, NULL, NULL, INTR_TYPE_CLK, NULL); i8254_intsrc = intr_lookup_source(0); if (i8254_intsrc != NULL) @@ -792,7 +792,7 @@ /* Enable periodic interrupts from the RTC. */ rtc_statusb |= RTCSB_PINTR; - intr_add_handler("rtc", 8, rtcintr, NULL, NULL, + intr_add_handler("rtc", 8, (driver_filter_t *)rtcintr, NULL, NULL, INTR_TYPE_CLK, NULL); writertc(RTC_STATUSB, rtc_statusb);