From patchwork Mon Dec 18 15:45:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 135284 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E2FC74373C; Mon, 18 Dec 2023 16:45:36 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CFF8A41132; Mon, 18 Dec 2023 16:45:36 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 51BB0402ED for ; Mon, 18 Dec 2023 16:45:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1702914334; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3UR557v5BJ5t1xD4ZIleI+NRqvzl/SubhpKVrC4aEjM=; b=Xzl3i0F5aSuhNJDDKI7yqc1QhR5SS5khxoAT3MItD+xI16qS/80BJYAeajilP8D3rfnjz6 RtC2AJ4zCHbEGbS32lEjCl7uEkEnTOs0ZUB10leYuNZEJNGU/GwnOxDef3mPmERBbihok/ uGgRZO0S0j6NyMK7bK89o7pucnDjkrQ= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-275-_ui8gBrQP9i-c1k8SY0j5Q-1; Mon, 18 Dec 2023 10:45:31 -0500 X-MC-Unique: _ui8gBrQP9i-c1k8SY0j5Q-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 192F33C1E9D0; Mon, 18 Dec 2023 15:45:31 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.218]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3ADC63C27; Mon, 18 Dec 2023 15:45:30 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Rosen Xu , Tianfei Zhang , Qi Zhang Subject: [PATCH] bus/ifpga: remove dead code Date: Mon, 18 Dec 2023 16:45:26 +0100 Message-ID: <20231218154527.1507785-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This macro was never used. Fixes: 05fa3d4a6539 ("bus/ifpga: add Intel FPGA bus library") Signed-off-by: David Marchand Acked-by: Bruce Richardson Acked-by: Rosen Xu --- drivers/bus/ifpga/ifpga_logs.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/bus/ifpga/ifpga_logs.h b/drivers/bus/ifpga/ifpga_logs.h index 873e0a4f2f..248bccba5d 100644 --- a/drivers/bus/ifpga/ifpga_logs.h +++ b/drivers/bus/ifpga/ifpga_logs.h @@ -9,10 +9,6 @@ extern int ifpga_bus_logtype; -#define IFPGA_LOG(level, fmt, args...) \ - rte_log(RTE_LOG_ ## level, ifpga_bus_logtype, "%s(): " fmt "\n", \ - __func__, ##args) - #define IFPGA_BUS_LOG(level, fmt, args...) \ rte_log(RTE_LOG_ ## level, ifpga_bus_logtype, "%s(): " fmt "\n", \ __func__, ##args)