From owner-svn-src-projects@FreeBSD.ORG Mon Jul 14 00:32:48 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13654806; Mon, 14 Jul 2014 00:32:48 +0000 (UTC) Received: from smtp1.multiplay.co.uk (smtp1.multiplay.co.uk [85.236.96.35]) by mx1.freebsd.org (Postfix) with ESMTP id CC8562809; Mon, 14 Jul 2014 00:32:47 +0000 (UTC) Received: by smtp1.multiplay.co.uk (Postfix, from userid 65534) id 4020520E7088B; Mon, 14 Jul 2014 00:32:40 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.multiplay.co.uk X-Spam-Level: ** X-Spam-Status: No, score=2.3 required=8.0 tests=AWL,BAYES_00,DOS_OE_TO_MX, FSL_HELO_NON_FQDN_1,HELO_NO_DOMAIN,RDNS_DYNAMIC,STOX_REPLY_TYPE autolearn=no version=3.3.1 Received: from r2d2 (82-69-141-170.dsl.in-addr.zen.co.uk [82.69.141.170]) by smtp1.multiplay.co.uk (Postfix) with ESMTPS id E2E7720E70886; Mon, 14 Jul 2014 00:32:34 +0000 (UTC) Message-ID: From: "Steven Hartland" To: "Justin Hibbits" , , References: <201407140016.s6E0Gnlf094070@svn.freebsd.org> Subject: Re: svn commit: r268599 - projects/pmac_pmu/sys/powerpc/powermac Date: Mon, 14 Jul 2014 01:32:33 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 00:32:48 -0000 Candidate for a sysctl so users can customise? ----- Original Message ----- From: "Justin Hibbits" To: ; Sent: Monday, July 14, 2014 1:16 AM Subject: svn commit: r268599 - projects/pmac_pmu/sys/powerpc/powermac > Author: jhibbits > Date: Mon Jul 14 00:16:49 2014 > New Revision: 268599 > URL: http://svnweb.freebsd.org/changeset/base/268599 > > Log: > Reduce the backlight off delay even more. > > Modified: > projects/pmac_pmu/sys/powerpc/powermac/atibl.c > > Modified: projects/pmac_pmu/sys/powerpc/powermac/atibl.c > ============================================================================== > --- projects/pmac_pmu/sys/powerpc/powermac/atibl.c Sun Jul 13 23:53:41 2014 (r268598) > +++ projects/pmac_pmu/sys/powerpc/powermac/atibl.c Mon Jul 14 00:16:49 2014 (r268599) > @@ -245,7 +245,7 @@ atibl_setlevel(struct atibl_softc *sc, i > lvds_gen_cntl &= ~(RADEON_LVDS_BL_MOD_EN | RADEON_LVDS_BL_MOD_LEVEL_MASK); > bus_write_4(sc->sc_memr, RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); > lvds_gen_cntl &= ~(RADEON_LVDS_ON | RADEON_LVDS_EN); > - DELAY(200000); > + DELAY(100); > bus_write_4(sc->sc_memr, RADEON_LVDS_GEN_CNTL, lvds_gen_cntl); > > atibl_pll_wreg(sc, RADEON_PIXCLKS_CNTL, pixclks_cntl); > >