From patchwork Wed Sep 11 06:04:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: zhangjiao2 X-Patchwork-Id: 13799842 X-Patchwork-Delegate: bhelgaas@google.com Received: from cmccmta1.chinamobile.com (cmccmta2.chinamobile.com [111.22.67.135]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 55B8E3FB1B; Wed, 11 Sep 2024 07:50:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=111.22.67.135 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726041022; cv=none; b=uToF6Tkt5iVm1Tll01rNHcwl/M3GDzNQFRJH+Cg6JEWt0DNOTCbEqzppauvy16d9ynRgtMm7Iz1YyYmanB+Xs+nzZEVRJQWsj+NhqmpXk/+ZgPi08uHzrgzr9WjQQk+9fncL0zMNvq1jK/D1JI++ofHle+Rd7nzeODVoG9MXTR0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1726041022; c=relaxed/simple; bh=xHt+PvkhvrriHMsAPnHrMoyfhlPZwmFuV1Gtfrfb84k=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=WunMGF/xGwGBS8jOu3o2xTmEBFOL8MRfHnN+ln2nxxfk+PO4SkhrqltDerVFzYqyyYu1nCf7UQn31U3NFetUjMVswNkdMDwhpBPORiYxsszHwjxLDZ/b5mLFbwUSNWMeGQTuxG0YPKJBjVxY8phrsOhByO+t0raTguDB/0AtSAQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com; spf=pass smtp.mailfrom=cmss.chinamobile.com; arc=none smtp.client-ip=111.22.67.135 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=cmss.chinamobile.com X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from spf.mail.chinamobile.com (unknown[10.188.0.87]) by rmmx-syy-dmz-app03-12003 (RichMail) with SMTP id 2ee366e14bb3b91-ec3a0; Wed, 11 Sep 2024 15:50:14 +0800 (CST) X-RM-TRANSID: 2ee366e14bb3b91-ec3a0 X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from localhost.localdomain (unknown[223.108.79.97]) by rmsmtp-syy-appsvr08-12008 (RichMail) with SMTP id 2ee866e14bb5a2b-bc159; Wed, 11 Sep 2024 15:50:14 +0800 (CST) X-RM-TRANSID: 2ee866e14bb5a2b-bc159 From: zhangjiao2 To: manivannan.sadhasivam@linaro.org Cc: kw@linux.com, kishon@kernel.org, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, zhang jiao Subject: [PATCH] tools: PCI: Remove unused BILLION macro Date: Wed, 11 Sep 2024 14:04:01 +0800 Message-Id: <20240911060401.9230-1-zhangjiao2@cmss.chinamobile.com> X-Mailer: git-send-email 2.33.0 Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: zhang jiao The macro BILLION is never referenced in the code. Just remove it. Signed-off-by: zhang jiao --- tools/pci/pcitest.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c index 441b54234635..470258009ddc 100644 --- a/tools/pci/pcitest.c +++ b/tools/pci/pcitest.c @@ -16,8 +16,6 @@ #include -#define BILLION 1E9 - static char *result[] = { "NOT OKAY", "OKAY" }; static char *irq[] = { "LEGACY", "MSI", "MSI-X" };