Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755090AbZDUTBN (ORCPT ); Tue, 21 Apr 2009 15:01:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753265AbZDUTAz (ORCPT ); Tue, 21 Apr 2009 15:00:55 -0400 Received: from mail-fx0-f158.google.com ([209.85.220.158]:39522 "EHLO mail-fx0-f158.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752074AbZDUTAx convert rfc822-to-8bit (ORCPT ); Tue, 21 Apr 2009 15:00:53 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-disposition:message-id:content-type :content-transfer-encoding; b=sunYzM+R7YNwSBDqkGxc8YFO8wjmDzz+/QewJoeLDOOcm0u+kPY1XTIO7VUrzJsSX5 BXYc4TrksS7422wVVbIXq6wMvX9kNGwJHwlG9Kvch5K9FrghJbk4mH1SlOkIk+zposO4 VQM/Yga+QHqsov/PBskLl4qSwsnd33gXHGnr4= From: Bartlomiej Zolnierkiewicz To: subrata@linux.vnet.ibm.com Subject: Re: [BUILD FAILURE 05/12] Next April 21 : PPC64 randconfig [drivers/macintosh/mediabay.o] Date: Tue, 21 Apr 2009 21:04:14 +0200 User-Agent: KMail/1.11.1 (Linux/2.6.29-next-20090403; KDE/4.2.1; i686; ; ) Cc: "Linuxppc-dev" , Paul Mackerras , Benjamin Herrenschmidt , Stefan Bader , Marcelo Tosatti , Adrian Bunk , Stephen Rothwell , "linux-next" , sachinp , "linux-kernel" , Alexander Beregalov References: <1240339875.9110.137.camel@subratamodak.linux.ibm.com> In-Reply-To: <1240339875.9110.137.camel@subratamodak.linux.ibm.com> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200904212104.14665.bzolnier@gmail.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2093 Lines: 59 On Tuesday 21 April 2009 20:51:15 Subrata Modak wrote: > Reported this earlier on 14th April: > http://lkml.org/lkml/2009/4/14/490, > > Is there a solution available ? Perfect timing. I was just going through overdue reports. > CC drivers/macintosh/mediabay.o > In file included from drivers/macintosh/mediabay.c:21: > include/linux/ide.h:610: error: field ‘sense_rq’ has incomplete type > make[2]: *** [drivers/macintosh/mediabay.o] Error 1 > make[1]: *** [drivers/macintosh] Error 2 > make: *** [drivers] Error 2 > --- From: Bartlomiej Zolnierkiewicz Subject: [PATCH] mediabay: fix build for CONFIG_BLOCK=n On Tuesday 14 April 2009 20:31:21 Subrata Modak wrote: > Observed the following build error: > --- > CC drivers/macintosh/mediabay.o > In file included from drivers/macintosh/mediabay.c:21: > include/linux/ide.h:605: error: field ‘request_sense_rq’ has incomplete > type > make[2]: *** [drivers/macintosh/mediabay.o] Error 1 > make[1]: *** [drivers/macintosh] Error 2 > make: *** [drivers] Error 2 > --- mediabay shouldn't include unconditionally so remove the superfluous include from mediabay.c ( will pull in for CONFIG_BLK_DEV_IDE_PMAC=y). Reported-by: Subrata Modak Cc: Paul Mackerras Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/macintosh/mediabay.c | 1 - 1 file changed, 1 deletion(-) Index: b/drivers/macintosh/mediabay.c =================================================================== --- a/drivers/macintosh/mediabay.c +++ b/drivers/macintosh/mediabay.c @@ -18,7 +18,6 @@ #include #include #include -#include #include #include #include -- 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/