From patchwork Fri Sep 29 12:59:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Petri Latvala X-Patchwork-Id: 9977989 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 8146460311 for ; Fri, 29 Sep 2017 13:00:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6CD782987F for ; Fri, 29 Sep 2017 13:00:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 60BD22987D; Fri, 29 Sep 2017 13:00:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 2178E2987F for ; Fri, 29 Sep 2017 13:00:07 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9498B6EBA1; Fri, 29 Sep 2017 13:00:06 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from johanna2.inet.fi (mta-out1.inet.fi [62.71.2.233]) by gabe.freedesktop.org (Postfix) with ESMTP id 1EBC16EBA0 for ; Fri, 29 Sep 2017 13:00:01 +0000 (UTC) RazorGate-KAS: Status: not_detected RazorGate-KAS: Rate: 0 RazorGate-KAS: Envelope from: RazorGate-KAS: Version: 5.5.3 RazorGate-KAS: LuaCore: 80 2014-11-10_18-01-23 260f8afb9361da3c7edfd3a8e3a4ca908191ad29 RazorGate-KAS: Lua profiles 69136 [Nov 12 2014] RazorGate-KAS: Method: none Received: from hufflepuff.adrinael.net (84.248.197.237) by johanna2.inet.fi (9.0.002.03-2-gbe5d057) id 59CCD864001AB25E; Fri, 29 Sep 2017 16:00:01 +0300 Received: from adrinael by hufflepuff.adrinael.net with local (Exim 4.84_2) (envelope-from ) id 1dxutd-0005MN-Qg; Fri, 29 Sep 2017 16:00:01 +0300 From: Petri Latvala To: intel-gfx@lists.freedesktop.org Date: Fri, 29 Sep 2017 15:59:49 +0300 Message-Id: <1506689992-20540-5-git-send-email-petri.latvala@intel.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1506689992-20540-1-git-send-email-petri.latvala@intel.com> References: <1506689992-20540-1-git-send-email-petri.latvala@intel.com> Subject: [Intel-gfx] [PATCH i-g-t 4/7] lib: Remove media_fill.c X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP media_fill.c has been unused from around 2014 when its contents moved to intel_batchbuffer.c. Signed-off-by: Petri Latvala --- lib/media_fill.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 lib/media_fill.c diff --git a/lib/media_fill.c b/lib/media_fill.c deleted file mode 100644 index 1d212b80..00000000 --- a/lib/media_fill.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "i830_reg.h" -#include "media_fill.h" - -media_fillfunc_t get_media_fillfunc(int devid) -{ - media_fillfunc_t fill = NULL; - - if (IS_GEN8(devid)) - fill = gen8_media_fillfunc; - else if (IS_GEN7(devid)) - fill = gen7_media_fillfunc; - else if (IS_GEN9(devid)) - fill = gen9_media_fillfunc; - - return fill; -}