Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 3 Dec 2002 06:24:19 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 3 Dec 2002 06:24:19 -0500 Received: from ivoti.terra.com.br ([200.176.3.20]:20187 "EHLO ivoti.terra.com.br") by vger.kernel.org with ESMTP id ; Tue, 3 Dec 2002 06:24:18 -0500 Date: Tue, 3 Dec 2002 09:31:44 -0200 From: Lucio Maciel To: Gregoire Favre Cc: linux-kernel@vger.kernel.org, "rusty's trivial patch monkey" Subject: [TRIVIAL PATCH 2.5] Uninitialised timer in matroxfb_Ti3026 [Was] Re: What does that mean (2.5.50)? Message-Id: <20021203093144.29891c59.abslucio@terra.com.br> In-Reply-To: <20021202213335.GB28863@ulima.unil.ch> References: <20021202212421.GA28863@ulima.unil.ch> <20021202213335.GB28863@ulima.unil.ch> Organization: absoluta X-Mailer: Sylpheed version 0.8.5 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Tue__3_Dec_2002_09:31:44_-0200_081829d8" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3083 Lines: 89 This is a multi-part message in MIME format. --Multipart_Tue__3_Dec_2002_09:31:44_-0200_081829d8 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Fix an Uninitialised timer in matroxfb_Ti3026.c best regards On Mon, 2 Dec 2002 22:33:35 +0100 Gregoire Favre wrote: > On Mon, Dec 02, 2002 at 10:24:21PM +0100, Gregoire Favre wrote: > > > matroxfb: framebuffer at 0xDC000000, mapped to 0xe0805000, size 33554432 > > Uninitialised timer! > > This is just a warning. Your computer is OK > > function=0xc02a654c, data=0x0 > > Call Trace: > > [] check_timer_failed+0x63/0x65 > > [] cursor_timer_handler+0x0/0x3c > > [] add_timer+0x3f/0xa1 > > [] fbcon_startup+0x4b/0x4d > > [] take_over_console+0x29/0x1c8 > > [] register_framebuffer+0xe9/0x16d > > [] initMatrox2+0x849/0xaba > > [] matroxfb_probe+0x286/0x2da > > [] pci_device_probe+0x5e/0x6c > > [] bus_match+0x45/0x7d > > [] driver_attach+0x51/0x69 > > [] bus_add_driver+0xa7/0xcd > > [] driver_register+0x2f/0x33 > > [] create_proc_entry+0x88/0xbc > > [] pci_register_driver+0x47/0x57 > > [] init+0x3d/0x15a > > [] init+0x0/0x15a > > [] kernel_thread_helper+0x5/0xb > > > > Console: switching to colour frame buffer device 200x75 > > Is the principal question... > > Thank you very much, > > Gr?goire > ________________________________________________________________ > http://ulima.unil.ch/greg ICQ:16624071 mailto:greg@ulima.unil.ch > - > 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/ > -- ::: Lucio F. Maciel ::: abslucio@terra.com.br ::: icq 93065464 ::: Absoluta.net --Multipart_Tue__3_Dec_2002_09:31:44_-0200_081829d8 Content-Type: text/plain; name="matroxfb_Ti3026.patch" Content-Disposition: attachment; filename="matroxfb_Ti3026.patch" Content-Transfer-Encoding: 7bit --- linux-2.5.50/drivers/video/matrox/matroxfb_Ti3026.c~ 2002-11-22 19:40:13.000000000 -0200 +++ linux-2.5.50/drivers/video/matrox/matroxfb_Ti3026.c 2002-12-03 09:18:35.000000000 -0200 @@ -287,6 +287,7 @@ #define minfo ((struct matrox_fb_info*)ptr) matroxfb_DAC_lock_irqsave(flags); outTi3026(PMINFO TVP3026_XCURCTRL, inTi3026(PMINFO TVP3026_XCURCTRL) ^ TVP3026_XCURCTRL_DIS ^ TVP3026_XCURCTRL_XGA); + init_timer(&ACCESS_FBINFO(cursor.timer)); ACCESS_FBINFO(cursor.timer.expires) = jiffies + HZ/2; add_timer(&ACCESS_FBINFO(cursor.timer)); matroxfb_DAC_unlock_irqrestore(flags); --Multipart_Tue__3_Dec_2002_09:31:44_-0200_081829d8-- - 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/