From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261956AbTJXDfj (ORCPT ); Thu, 23 Oct 2003 23:35:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261957AbTJXDfj (ORCPT ); Thu, 23 Oct 2003 23:35:39 -0400 Received: from user-118bg4o.cable.mindspring.com ([66.133.192.152]:26252 "EHLO BL4ST") by vger.kernel.org with ESMTP id S261956AbTJXDfi (ORCPT ); Thu, 23 Oct 2003 23:35:38 -0400 Date: Thu, 23 Oct 2003 20:35:51 -0700 From: Eric Wong To: marcelo.tosatti@cyclades.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] trivial compile fix when FANCY_STATUS_DUMPS disabled Message-ID: <20031024033550.GA13374@BL4ST> References: <20031024033226.GA530@BL4ST> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031024033226.GA530@BL4ST> User-Agent: Mutt/1.5.4i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Eric Wong wrote: > This fixes compilation when FANCY_STATUS_DUMPS is disabled in > include/linux/ide.h Oops, forgot to say, this is against 2.4.22 diff -ruNp a/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c --- a/drivers/ide/ide-disk.c 2003-06-13 07:51:33.000000000 -0700 +++ b/drivers/ide/ide-disk.c 2003-10-23 02:05:53.000000000 -0700 @@ -881,8 +881,8 @@ static u8 idedisk_dump_status (ide_drive printk(", sector=%ld", HWGROUP(drive)->rq->sector); } - } #endif /* FANCY_STATUS_DUMPS */ + } printk("\n"); local_irq_restore(flags); return err; -- Eric Wong