From patchwork Tue Mar 5 12:04:59 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Zong-You Xie X-Patchwork-Id: 13582273 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 8E0DDC54798 for ; Tue, 5 Mar 2024 12:06:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=+Y/bVwInVHnwRSc91H2lBNZq6IK1EWdPPTDv35DS74E=; b=iqosbv0QNioYtg T7cYDzOfDC2PJW6nI34ymsc5xSlzEDJbcAkzXLSXzTFLT2VUVdP+DrE/HHIOBsE6tqdPSgK+7V/Ms DjbI78tbXfxEc+JRFu0cEAf7aPEPE6CgcT6Q95QIVpd3X6Hof9BNTXK1bolrXuWIfEoOy9BAHTWlx rYFf/+4ALy7c8zrL+2YdBTUIm9yfap5G03GKfwiC1Ow6sOaiSM6xJlvJMEVTfgO9KnlujoaOs+oaU pszrMEzcZCA3dYBARf3/9oavbCDfazOgvR5tISSIdM/TsJcfIDCzu4JGsHuokHmYBM1l97wj8TaGk frAf+10u4X4rYHO2mzGw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rhTYt-0000000DUer-340h; Tue, 05 Mar 2024 12:06:23 +0000 Received: from 60-248-80-70.hinet-ip.hinet.net ([60.248.80.70] helo=Atcsqr.andestech.com) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1rhTYq-0000000DUe3-1SM4 for linux-riscv@lists.infradead.org; Tue, 05 Mar 2024 12:06:21 +0000 Received: from mail.andestech.com (ATCPCS16.andestech.com [10.0.1.222]) by Atcsqr.andestech.com with ESMTP id 425C5Vpx023254; Tue, 5 Mar 2024 20:05:31 +0800 (+08) (envelope-from ben717@andestech.com) Received: from atctrx.andestech.com (10.0.15.173) by ATCPCS16.andestech.com (10.0.1.222) with Microsoft SMTP Server id 14.3.498.0; Tue, 5 Mar 2024 20:05:26 +0800 From: Ben Zong-You Xie To: , , , , , , , , , , , , , , CC: , , Ben Zong-You Xie Subject: [PATCH 0/2] Fix the warnings in the 32-bit platform Date: Tue, 5 Mar 2024 20:04:59 +0800 Message-ID: <20240305120501.1785084-1-ben717@andestech.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Originating-IP: [10.0.15.173] X-DNSRBL: X-MAIL: Atcsqr.andestech.com 425C5Vpx023254 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240305_040620_652981_2C955D5D X-CRM114-Status: UNSURE ( 5.80 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org This series fix two incompatible type warnings when building perf in the 32-bit platform. Ben Zong-You Xie (2): perf daemon: Fix the warning about time_t perf riscv: Fix the warning due to the incompatible type tools/perf/arch/riscv/util/header.c | 2 +- tools/perf/builtin-daemon.c | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) Reviewed-by: Alexandre Ghiti