From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758355Ab0DPD7T (ORCPT ); Thu, 15 Apr 2010 23:59:19 -0400 Received: from www.telegraphics.com.au ([204.15.192.19]:37933 "EHLO mail.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758279Ab0DPD7S (ORCPT ); Thu, 15 Apr 2010 23:59:18 -0400 Date: Fri, 16 Apr 2010 13:59:14 +1000 (EST) From: Finn Thain To: Joe Perches cc: David Miller , p_gortmaker@yahoo.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-m68k@vger.kernel.org Subject: Re: [PATCH] mac8390: fix pr_info() calls, was Re: another cleanup patch gone wrong In-Reply-To: <1271390080.2298.25.camel@Joe-Laptop.home> Message-ID: References: <20100415.200113.215578006.davem@davemloft.net> <1271390080.2298.25.camel@Joe-Laptop.home> User-Agent: Alpine 2.00 (OSX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 15 Apr 2010, Joe Perches wrote: > > return 0; > > } > > @@ -660,7 +660,7 @@ > > { > > ei_status.txing = 0; > > if (ei_debug > 1) > > - pr_info("reset not supported\n"); > > + pr_debug("reset not supported\n"); > > You'll need to add > #define DEBUG > for this to print. > > > - pr_info("Need to reset the NS8390 t=%lu...", jiffies); > > + pr_debug("Need to reset the NS8390 t=%lu...", jiffies); > > This also now doesn't print. > Oops. Thanks for spotting that. I'll resend. Finn > cheers, Joe