From patchwork Thu May 6 08:41:54 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 92993 X-Patchwork-Delegate: jerinj@marvell.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 20AD7A0524; Thu, 6 May 2021 10:42:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0E486410FA; Thu, 6 May 2021 10:42:06 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 748BB410F6 for ; Thu, 6 May 2021 10:42:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1620290523; 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=ECtC5Ci+KirjN3KdegWFZqneVXE1207naaoymocbIXQ=; b=GZdKHWvGjStlXCTSw3B8FU3FSXp44QX5lyXWbDEWMCAkXZAE310wY2WMfnOsc72t+DH33V YbulJElHAOwILl9o34R9DtlQ3pvkwASAa5a+XV6jHN9MZ2atDOn5HMhnf+71odzPKyHig7 +YO04Zv13L0Lnet2aa1bK3A0LyW+gRQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-553-p-sAHfs5P8KKdjvayY9Rsw-1; Thu, 06 May 2021 04:41:59 -0400 X-MC-Unique: p-sAHfs5P8KKdjvayY9Rsw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 691AE8186E8; Thu, 6 May 2021 08:41:58 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id 21393687D6; Thu, 6 May 2021 08:41:56 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Hemant Agrawal , Nipun Gupta Date: Thu, 6 May 2021 10:41:54 +0200 Message-Id: <20210506084154.5469-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Subject: [dpdk-dev] [PATCH] event/dpaa2: remove unused macros 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 Sender: "dev" Fixes: 653242c3375a ("event/dpaa2: add self test") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Hemant Agrawal --- drivers/event/dpaa2/dpaa2_eventdev_logs.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/event/dpaa2/dpaa2_eventdev_logs.h b/drivers/event/dpaa2/dpaa2_eventdev_logs.h index 5da85c60f0..66c8c77274 100644 --- a/drivers/event/dpaa2/dpaa2_eventdev_logs.h +++ b/drivers/event/dpaa2/dpaa2_eventdev_logs.h @@ -38,7 +38,5 @@ extern int dpaa2_logtype_event; #define dpaa2_evdev_info(fmt, ...) DPAA2_EVENTDEV_LOG(INFO, fmt, ##__VA_ARGS__) #define dpaa2_evdev_dbg(fmt, ...) DPAA2_EVENTDEV_LOG(DEBUG, fmt, ##__VA_ARGS__) #define dpaa2_evdev_err(fmt, ...) DPAA2_EVENTDEV_LOG(ERR, fmt, ##__VA_ARGS__) -#define dpaa2_evdev__func_trace dpaa2_evdev_dbg -#define dpaa2_evdev_selftest dpaa2_evdev_info #endif /* _DPAA2_EVENTDEV_LOGS_H_ */