Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752294AbdHNUHx (ORCPT ); Mon, 14 Aug 2017 16:07:53 -0400 Received: from mail-wr0-f196.google.com ([209.85.128.196]:33597 "EHLO mail-wr0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752253AbdHNUHw (ORCPT ); Mon, 14 Aug 2017 16:07:52 -0400 Date: Mon, 14 Aug 2017 23:06:31 +0300 From: Cihangir Akturk To: Eric Anholt Cc: daniel@ffwll.ch, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, David Airlie Subject: Re: [PATCH v3 24/28] drm/vc4: switch to drm_*_get(), drm_*_put() helpers Message-ID: <20170814200631.GA1270@mbp> References: <1502454794-28558-1-git-send-email-cakturk@gmail.com> <1502454794-28558-25-git-send-email-cakturk@gmail.com> <874ltagcei.fsf@eliezer.anholt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <874ltagcei.fsf@eliezer.anholt.net> User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 845 Lines: 22 On Mon, Aug 14, 2017 at 12:47:01PM -0700, Eric Anholt wrote: > Cihangir Akturk writes: > > > Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() > > and drm_*_unreference() helpers. > > > > drm_*_reference() and drm_*_unreference() functions are just > > compatibility alias for drm_*_get() and drm_*_put() and should not be > > used by new code. So convert all users of compatibility functions to > > use the new APIs. > > Mind if I change the subject line to "drm/vc4: Continue the switch to > drm_*_put() helpers"? to distinguish from the patch that already landed? It's OK with me. Go ahead, change to whatever you want. > > (Looks like your previous patch was generated before my BO labeling code > landed, so we got another little patch here cleaning up the new code as > well) Thanks, Cihangir.