Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752540Ab1BAIcx (ORCPT ); Tue, 1 Feb 2011 03:32:53 -0500 Received: from mail-qw0-f46.google.com ([209.85.216.46]:39807 "EHLO mail-qw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751204Ab1BAIcw convert rfc822-to-8bit (ORCPT ); Tue, 1 Feb 2011 03:32:52 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type:content-transfer-encoding; b=iqnizxj9/4UwwjhhOjoRIbi5Tvjq3daiJAxa4BuvzKsrs5i8WHQ50EwAzL4R87HtbK xISim5yRrEb5wbsqBHfwflrReZP+Mu4iNXOrGgVv5393cuzQTuzWgytmDqc0RvU8a1/S ZfNMxUG3U1ZMOHD+rhlU5M07i+3tx5DSbmtI4= MIME-Version: 1.0 Reply-To: sedat.dilek@gmail.com Date: Tue, 1 Feb 2011 09:32:51 +0100 Message-ID: Subject: =?UTF-8?B?UmU6IGxpbnV4LW5leHQ6IFRyZWUgZm9yIEZlYnJ1YXJ5IDEgWyBzdGFnaW5nL3VzYnZpZA==?= =?UTF-8?B?ZW8vdmljYW0uYzogZXJyb3I6IGV4cGVjdGVkIOKAmDvigJkgYmVmb3JlIOKAmCnigJkgdG9rZW4gXQ==?= From: Sedat Dilek To: Stephen Rothwell Cc: linux-next@vger.kernel.org, LKML , Greg KH 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: 1562 Lines: 51 On Tue, Feb 1, 2011 at 5:34 AM, Stephen Rothwell wrote: > Hi all, > > Changes since 20110131: > > Dropped tree: xen > > The tty.current tree lost its conflict. > > The slab tree still has its build failure so I used the version from > next-20110121. > > The suspend tree lost its build failure. > > The sparc64 defconfig build has been fixed. > > The powerpc allyesconfig build has been broken by some obscure bloating > of the low memory code. > > ---------------------------------------------------------------------------- [ CC greg-kh ] Build error: ... drivers/staging/usbvideo/vicam.c:222:57: error: expected ‘;’ before ‘)’ token drivers/staging/usbvideo/vicam.c:222:57: error: expected statement before ‘)’ token ... This should be fixed by: Index: linux-next-20110201/drivers/staging/usbvideo/vicam.c =================================================================== --- linux-next-20110201.orig/drivers/staging/usbvideo/vicam.c +++ linux-next-20110201/drivers/staging/usbvideo/vicam.c @@ -219,7 +219,7 @@ set_camera_power(struct vicam_camera *ca { int status; - status = send_control_msg(cam, 0x50, state, 0, NULL, 0)); + status = send_control_msg(cam, 0x50, state, 0, NULL, 0); if (status < 0) return status; - Sedat - -- 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/