From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Re: linux-next: manual merge of the wireless-next tree with the net-next tree Date: Sun, 10 Feb 2013 18:58:47 -0800 Message-ID: <1360551527.2028.10.camel@joe-AO722> References: <20130211133350.5f510bbb28759960a19a98af@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Return-path: Received: from perches-mx.perches.com ([206.117.179.246]:58960 "EHLO labridge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751140Ab3BKC6s (ORCPT ); Sun, 10 Feb 2013 21:58:48 -0500 In-Reply-To: <20130211133350.5f510bbb28759960a19a98af@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: "John W. Linville" , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, David Miller , netdev@vger.kernel.org, Luciano Coelho On Mon, 2013-02-11 at 13:33 +1100, Stephen Rothwell wrote: > Hi John, > > Today's linux-next merge of the wireless-next tree got conflicts in > drivers/net/wireless/ti/wlcore/sdio.c and > drivers/net/wireless/ti/wlcore/spi.c between commit 0d2e7a5c6080 > ("wireless: Remove unnecessary alloc/OOM messages, alloc cleanups") from > the net-next tree and commit afb43e6d88e5 ("wlcore: remove if_ops from > platform_data") from the wireless-next tree. > > I fixed it up (see below) and can carry the fix as necessary (no action > is required). > Thanks Stephen. Can you remove just the dev_err below too please. + pdev_data = kzalloc(sizeof(*pdev_data), GFP_KERNEL); + if (!pdev_data) { + dev_err(&func->dev, "can't allocate platdev_data\n"); + goto out; + } Joe