From patchwork Sat Aug 4 00:38:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 175068 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 4DC282C008E for ; Sat, 4 Aug 2012 10:39:41 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754144Ab2HDAjZ (ORCPT ); Fri, 3 Aug 2012 20:39:25 -0400 Received: from oproxy6-pub.bluehost.com ([67.222.54.6]:37521 "HELO oproxy6-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754043Ab2HDAjW (ORCPT ); Fri, 3 Aug 2012 20:39:22 -0400 Received: (qmail 15367 invoked by uid 0); 4 Aug 2012 00:39:21 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy3.bluehost.com with SMTP; 4 Aug 2012 00:39:21 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Subject:CC:To:MIME-Version:From:Date:Message-ID; bh=DUI2IlK12eKv3NCZ4zB0sQE6R80/8M8XcUkUo03lOvM=; b=UkmLUA7CvVYSqBBFb6SgUl398d/h+PhJnclOlJ2oqeqIVbgeJPUWsD58SPzHvOHe9StyRvETzlcohp2s4K/UHX++90Y9fLRvcDhCUAQazawwe5MdBNR+iNi9tUS5TnAA; Received: from [50.53.38.135] (port=45862 helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1SxSOn-0007J1-M1; Fri, 03 Aug 2012 18:39:21 -0600 Message-ID: <501C6EEF.3030100@xenotime.net> Date: Fri, 03 Aug 2012 17:38:07 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Geert Uytterhoeven CC: linux-kernel@vger.kernel.org, Mikael Starvik , Jesper Nilsson , linux-cris-kernel@axis.com, netdev@vger.kernel.org, David Miller Subject: [PATCH] cris: fix eth_v10.c build error References: <1344002771-21072-1-git-send-email-geert@linux-m68k.org> In-Reply-To: <1344002771-21072-1-git-send-email-geert@linux-m68k.org> X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Randy Dunlap Fix build error on cris (not tested, no toolchain here): drivers/net/cris/eth_v10.c: error: too many arguments to function 'e100rxtx_interrupt' Reported-by: Geert Uytterhoeven Signed-off-by: Randy Dunlap Cc: Mikael Starvik Cc: Jesper Nilsson Cc: linux-cris-kernel@axis.com --- drivers/net/cris/eth_v10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-36-rc1.orig/drivers/net/cris/eth_v10.c +++ lnx-36-rc1/drivers/net/cris/eth_v10.c @@ -1712,7 +1712,7 @@ e100_set_network_leds(int active) static void e100_netpoll(struct net_device* netdev) { - e100rxtx_interrupt(NETWORK_DMA_TX_IRQ_NBR, netdev, NULL); + e100rxtx_interrupt(NETWORK_DMA_TX_IRQ_NBR, netdev); } #endif