From patchwork Mon Apr 8 17:04:15 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?VmlsbGUgU3lyasOkbMOk?= X-Patchwork-Id: 13621412 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 2C5F5CD1296 for ; Mon, 8 Apr 2024 17:05:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id DA39D1128B3; Mon, 8 Apr 2024 17:05:25 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="bNYKtuXI"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.21]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9C9C31128A5 for ; Mon, 8 Apr 2024 17:05:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1712595904; x=1744131904; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=VAgdfXWwcB+swlxwYDi94m/VxBv6WCwjUX4pW/LsdUc=; b=bNYKtuXIAx3QUw3xwyAS72VW8AVg4c9saBKdyaJXHUi5drmfnGdNlay4 k859KXEGTDtaNadkfSuK+r4dDpTiVOrB1/QUSgjXOdvibhcRJVgnR/WWR MADVkz8BPmktSrDKJUxnRvxJng7FR0w4V6xpNdU098xmch47uoXx/N9+5 EcqW4sqvFoB51OtPXWCqLk23jsEgN+aKVCJRYw9OfBI3/7NvwOGEbdcNo Oyk2pKA8kNWuuONvUAV5/hLJhiNgpoBOreaSCHurW+CGAhiV4pMy694XA 28hh7Yfgwsbc8GT1YN/8gd3JItkDYKOHq3IFPB1xLBITcSKj/5Dc8mmxs A==; X-CSE-ConnectionGUID: 4szQ0zOZTRG0YEbHd9lJxA== X-CSE-MsgGUID: OkM2xQCdR62FzrD72IMi9w== X-IronPort-AV: E=McAfee;i="6600,9927,11038"; a="7793417" X-IronPort-AV: E=Sophos;i="6.07,187,1708416000"; d="scan'208";a="7793417" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orvoesa113.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2024 10:05:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,11038"; a="827792334" X-IronPort-AV: E=Sophos;i="6.07,187,1708416000"; d="scan'208";a="827792334" Received: from stinkpipe.fi.intel.com (HELO stinkbox) ([10.237.72.74]) by orsmga001.jf.intel.com with SMTP; 08 Apr 2024 10:05:00 -0700 Received: by stinkbox (sSMTP sendmail emulation); Mon, 08 Apr 2024 20:04:59 +0300 From: Ville Syrjala To: dri-devel@lists.freedesktop.org Cc: Xinliang Liu , Tian Tao , Xinwei Kong , Sumit Semwal , Yongqin Liu , John Stultz Subject: [PATCH 10/21] drm/hisilicon/kirin: Fix MASK(32) on 32bit architectures Date: Mon, 8 Apr 2024 20:04:15 +0300 Message-ID: <20240408170426.9285-11-ville.syrjala@linux.intel.com> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240408170426.9285-1-ville.syrjala@linux.intel.com> References: <20240408170426.9285-1-ville.syrjala@linux.intel.com> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" From: Ville Syrjälä BIT(32) is illegal when sizeof(long)==4. Use BIT_ULL(32) instead. Cc: Xinliang Liu Cc: Tian Tao Cc: Xinwei Kong Cc: Sumit Semwal Cc: Yongqin Liu Cc: John Stultz Signed-off-by: Ville Syrjälä Acked-by: John Stultz --- drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h b/drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h index be9e789c2d04..36f923cc7594 100644 --- a/drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h +++ b/drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h @@ -10,7 +10,7 @@ /* * ADE Registers */ -#define MASK(x) (BIT(x) - 1) +#define MASK(x) (BIT_ULL(x) - 1) #define ADE_CTRL 0x0004 #define FRM_END_START_OFST 0