From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758861AbYFJVwj (ORCPT ); Tue, 10 Jun 2008 17:52:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754063AbYFJVwb (ORCPT ); Tue, 10 Jun 2008 17:52:31 -0400 Received: from ug-out-1314.google.com ([66.249.92.172]:14835 "EHLO ug-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753812AbYFJVwa (ORCPT ); Tue, 10 Jun 2008 17:52:30 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=B/COHZBQWnFt6/KV5WRNbsZTrLMEV2J8L5aT63h2xA1PCpb4hL48HRSupt0VjRt4jx tulpCHnDiLaRwt1qAVLbTY+NbHtP3mjisaA5HWHdwuPU8PeULVi2DCVUJdJf9m9EI6rz w98vfwBvdSUGdwG+AkK3TbN8GZNvbmEPpmdJg= Message-ID: <484EF759.3030806@gmail.com> Date: Tue, 10 Jun 2008 23:51:21 +0200 From: Jiri Slaby User-Agent: Thunderbird 2.0.0.12 (X11/20071114) MIME-Version: 1.0 To: Philippe De Muyter CC: linux-kernel@vger.kernel.org Subject: Re: [PATCH] driver/video/cirrusfb : Fix RAM address printk References: <20080610214255.GA27749@frolo.macqel> In-Reply-To: <20080610214255.GA27749@frolo.macqel> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/10/2008 11:42 PM, Philippe De Muyter wrote: > Hello everybody, > > In the cirrusfb driver, the RAM address printk has a superfluous 'x' > that could be interpreted as "don't care", while it is actually a typo. > Fix that. > > Signed-off-by: Philippe De Muyter > > diff -r 184e1bb486cf drivers/video/cirrusfb.c > --- a/drivers/video/cirrusfb.c Mon Jun 9 19:30:13 2008 -0700 > +++ b/drivers/video/cirrusfb.c Tue Jun 10 13:25:22 2008 +0200 > @@ -2432,7 +2432,7 @@ static int cirrusfb_pci_register(struct > info->screen_size = board_size; > cinfo->unmap = cirrusfb_pci_unmap; > > - printk(KERN_INFO " RAM (%lu kB) at 0xx%lx, ", > + printk(KERN_INFO " RAM (%lu kB) at 0x%lx, ", > info->screen_size >> 10, board_addr); Hmm, is there \n missing too? > printk(KERN_INFO "Cirrus Logic chipset on PCI bus\n"); > pci_set_drvdata(pdev, info);