From mboxrd@z Thu Jan 1 00:00:00 1970 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 C69FCC433F5 for ; Mon, 29 Nov 2021 09:48:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9A6BF6EC3E; Mon, 29 Nov 2021 09:48:47 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by gabe.freedesktop.org (Postfix) with ESMTPS id 82D006EC31 for ; Mon, 29 Nov 2021 09:48:46 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 2F0AA1FD33; Mon, 29 Nov 2021 09:48:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1638179325; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7hBK0QaaYkFaFjNRDuh1R2pqol79zjLvgj0AGGIp/Qo=; b=L4D1TL+EfTVcyc/aReWQ+v3REDsqInFN9m5pmSC3LaWZKyo4RaGVLvUSMGAo+pG0yHnCgo XhN8rsf+4bHEyXnIVi+M5sIJXFvxnCBXiYlHvdhfYtFdZSbLrbMoT/kDaJlMoFGFJ4ftq/ wPSkL+cR0wzqcmEK+PqPiJJZ9nNjbZY= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1638179325; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7hBK0QaaYkFaFjNRDuh1R2pqol79zjLvgj0AGGIp/Qo=; b=l5vgbsASG6l6z8AoiLi4qEhZWLk3PXnv3eoWpMCUmqaP11UiOA8jPTwo0NDhgfh8Se3vl1 5/sVN96Oc7kBJoCQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id D8CCA13C95; Mon, 29 Nov 2021 09:48:44 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id sKvtM/yhpGG+YAAAMHmgww (envelope-from ); Mon, 29 Nov 2021 09:48:44 +0000 From: Thomas Zimmermann To: daniel@ffwll.ch, airlied@linux.ie, zackr@vmware.com, linux-graphics-maintainer@vmware.com, christian.koenig@amd.com, ray.huang@amd.com, mripard@kernel.org, maarten.lankhorst@linux.intel.com, sam@ravnborg.org Subject: [PATCH v2 1/3] drm/ttm: Don't include drm_hashtab.h Date: Mon, 29 Nov 2021 10:48:39 +0100 Message-Id: <20211129094841.22499-2-tzimmermann@suse.de> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20211129094841.22499-1-tzimmermann@suse.de> References: <20211129094841.22499-1-tzimmermann@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Daniel Vetter , Thomas Zimmermann , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Remove the include statement for drm_hashtab.h. It's not required by TTM. Signed-off-by: Thomas Zimmermann Reviewed-by: Christian König Acked-by: Daniel Vetter --- include/drm/ttm/ttm_bo_api.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/drm/ttm/ttm_bo_api.h b/include/drm/ttm/ttm_bo_api.h index cd785cfa3123..c17b2df9178b 100644 --- a/include/drm/ttm/ttm_bo_api.h +++ b/include/drm/ttm/ttm_bo_api.h @@ -32,7 +32,6 @@ #define _TTM_BO_API_H_ #include -#include #include #include #include -- 2.34.0