From patchwork Fri Jan 28 08:36:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas De Marchi X-Patchwork-Id: 12728122 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D2DB9C433F5 for ; Fri, 28 Jan 2022 08:36:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 531E111238F; Fri, 28 Jan 2022 08:36:32 +0000 (UTC) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3457B11236B; Fri, 28 Jan 2022 08:36:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643358982; x=1674894982; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Z9ZeS5oFhGbrJNOTI/GRzNzkULBALELRHaczOGrNmEk=; b=YM7PlpC5nj50IV54bLeK4XVTXt0JkZwQD/yPmHADy6K9akYvRYCSxpeY XfFzjPMAcOSaPKT31493TJbxMp8jz+9jxoxqd+3LvxyBXWleaL4nzDQC9 7K9AYE1BjvS5YPkUFNOQdGjVR/1EoYZpo6bebHGXfa7/BE7/UgaR5yi7H Jex36GKVS9oFzf963UmOflDcGnNQfvI2ZwktxhFMJIP6vNGXD+S/TWNWP u30F7Vi7NOwLyIUPjtsI78KAC8DHQCUXgl2UbVj9FzkTJJtU/QdA8ZMee KFiPpaYH0YT1ZBzDhf3vpIs6mqjtBkkPysUg9OVR5JaJ0zw4TGVqY432t w==; X-IronPort-AV: E=McAfee;i="6200,9189,10240"; a="227056604" X-IronPort-AV: E=Sophos;i="5.88,323,1635231600"; d="scan'208";a="227056604" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jan 2022 00:36:17 -0800 X-IronPort-AV: E=Sophos;i="5.88,323,1635231600"; d="scan'208";a="581788761" Received: from lucas-s2600cw.jf.intel.com ([10.165.21.202]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jan 2022 00:36:16 -0800 From: Lucas De Marchi To: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Subject: [PATCH 11/14] drm/radeon: Replace dma-buf-map with iosys-map Date: Fri, 28 Jan 2022 00:36:23 -0800 Message-Id: <20220128083626.3012259-12-lucas.demarchi@intel.com> X-Mailer: git-send-email 2.35.0 In-Reply-To: <20220128083626.3012259-1-lucas.demarchi@intel.com> References: <20220128083626.3012259-1-lucas.demarchi@intel.com> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: airlied@linux.ie, daniel.vetter@ffwll.ch, christian.koenig@amd.com, srinivas.kandagatla@linaro.org, tzimmermann@suse.de, gregkh@linuxfoundation.org, nouveau@lists.freedesktop.org, linux-media@vger.kernel.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" iosys-map is the new name for dma-buf-map and will gain new capabitilities. Replace with the new API in radeon. Signed-off-by: Lucas De Marchi --- drivers/gpu/drm/radeon/radeon_gem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/radeon/radeon_gem.c b/drivers/gpu/drm/radeon/radeon_gem.c index a36a4f2c76b0..f563284a7fac 100644 --- a/drivers/gpu/drm/radeon/radeon_gem.c +++ b/drivers/gpu/drm/radeon/radeon_gem.c @@ -26,6 +26,7 @@ * Jerome Glisse */ +#include #include #include