From patchwork Tue Jul 26 18:51:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rafael Wysocki X-Patchwork-Id: 1009202 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p6QIosqU021087 for ; Tue, 26 Jul 2011 18:50:54 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753453Ab1GZSuW (ORCPT ); Tue, 26 Jul 2011 14:50:22 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:51895 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753246Ab1GZSuO (ORCPT ); Tue, 26 Jul 2011 14:50:14 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by ogre.sisk.pl (Postfix) with ESMTP id A86841A7437; Tue, 26 Jul 2011 20:18:15 +0200 (CEST) Received: from ogre.sisk.pl ([127.0.0.1]) by localhost (ogre.sisk.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14447-08; Tue, 26 Jul 2011 20:17:51 +0200 (CEST) Received: from ferrari.rjw.lan (220-bem-13.acn.waw.pl [82.210.184.220]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ogre.sisk.pl (Postfix) with ESMTP id 601DB1B5E96; Tue, 26 Jul 2011 20:17:51 +0200 (CEST) From: "Rafael J. Wysocki" To: Linus Torvalds Subject: [PATCH 2/2] USB / Renesas: Fix build issue related to struct scatterlist Date: Tue, 26 Jul 2011 20:51:01 +0200 User-Agent: KMail/1.13.6 (Linux/3.0.0+; KDE/4.6.0; x86_64; ; ) Cc: LKML , linux-sh@vger.kernel.org, "Greg Kroah-Hartman" , linux-usb@vger.kernel.org References: <201107262049.15333.rjw@sisk.pl> In-Reply-To: <201107262049.15333.rjw@sisk.pl> MIME-Version: 1.0 Message-Id: <201107262051.02019.rjw@sisk.pl> X-Virus-Scanned: amavisd-new at ogre.sisk.pl using MkS_Vir for Linux Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 26 Jul 2011 18:50:54 +0000 (UTC) From: Rafael J. Wysocki Fix build issue caused by undefined struct scatterlist in drivers/usb/renesas_usbhs/fifo.c. Signed-off-by: Rafael J. Wysocki --- drivers/usb/renesas_usbhs/fifo.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-2.6/drivers/usb/renesas_usbhs/fifo.c =================================================================== --- linux-2.6.orig/drivers/usb/renesas_usbhs/fifo.c +++ linux-2.6/drivers/usb/renesas_usbhs/fifo.c @@ -16,6 +16,7 @@ */ #include #include +#include #include "./common.h" #include "./pipe.h"