From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757411AbbE3AdN (ORCPT ); Fri, 29 May 2015 20:33:13 -0400 Received: from cantor2.suse.de ([195.135.220.15]:60490 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756919AbbE3AdD (ORCPT ); Fri, 29 May 2015 20:33:03 -0400 Date: Sat, 30 May 2015 02:32:56 +0200 From: "Luis R. Rodriguez" To: Ingo Molnar , tomi.valkeinen@ti.com, Dave Airlie Cc: "Luis R. Rodriguez" , linux-kernel@vger.kernel.org, linux-fbdev@vger.kernel.org, Thomas Gleixner , Juergen Gross , Jingoo Han , Daniel Vetter , Masanari Iida , Suresh Siddha , Ingo Molnar , Andy Lutomirski , Antonino Daplas , Jean-Christophe Plagniol-Villard Subject: Re: [PATCH v4 3/17] video: fbdev: gbefb: use arch_phys_wc_add() and devm_ioremap_wc() Message-ID: <20150530003256.GG23057@wotan.suse.de> References: <1432859434-17821-1-git-send-email-mcgrof@do-not-panic.com> <1432859434-17821-3-git-send-email-mcgrof@do-not-panic.com> <20150529064144.GA22749@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150529064144.GA22749@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, May 29, 2015 at 08:41:44AM +0200, Ingo Molnar wrote: > > * Luis R. Rodriguez wrote: > > > + gbe_mem = devm_ioremap_wc(&p_dev->dev, gbe_mem_phys, > > + gbe_mem_size); > > > + gbe_mem = dma_alloc_writecombine(NULL, gbe_mem_size, > > + &gbe_dma_addr, GFP_KERNEL); > > > + par->wc_cookie = arch_phys_wc_add(gbe_mem_phys, gbe_mem_size); > > > + arch_phys_wc_del(par->wc_cookie); > > > + arch_phys_wc_del(par->wc_cookie); > > Could we _please_ rename dma_*_writecombine() to dma_*_wc(), so that the naming is > coherent across the various APIs? Sure, OK done. Will send once this series is merged and visible on linux-next. But who's tree should this go through? Since it depends on this series which goes through Tomi's tree should it go through there? Luis