Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2983311pxu; Sun, 29 Nov 2020 10:57:27 -0800 (PST) X-Google-Smtp-Source: ABdhPJzgYBRnU2P29u2zwn4gYaxQUeHWzl7WG3+Ygs8GoMp2rH6wbvu6Jf6gwq4+c5dGycNz4ZXD X-Received: by 2002:a50:d6c6:: with SMTP id l6mr18181219edj.80.1606676246927; Sun, 29 Nov 2020 10:57:26 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1606676246; cv=none; d=google.com; s=arc-20160816; b=0Xh1F2m7hbYAPTVrZROAzAVWU+J//G6mpUQodGNLR+tVvB+vdb5jU2l63eT0+Rv8qK xi1jv2iXrXaUdgQutb0cv5lvY4tzU7F4cIFEQ55Uo1iob78KXxdSeGNUdzmreqioaQoW J4byi9uvQpNnH/qWgGfyIkAvKu0VQ+/5Y+rqq6z7mj+8MUf1wavCFB+J7saa4rAEXFTt kjmho1q5ohdj1v5WAiO+hUYlfVfqTM2JFhf4jd4KJtPcRy/CxrmlvkDGOvhBwACEIQQa UNIUlCkCN5iL7yPFXW8JKY5slRiInyER12Tfajm5mGPduSTD/3JKzL6M1Pxat9BRE6fO BPRQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=IOrR4z+u8nVxtbgZT8n7hubD7uzrPqYe408V38wzQ8w=; b=Afy3lmkMs3YcqmanRCt2pE5JSaksRtphnK4PwDdSoeJsEAxmKa33SOdeLrAxPpDquP H45cf7eSayopEfdmwgtZN5zWqrXvbZhJnyncNGSKei1fbHEgiAlHh00+t5jl+2sGVdfZ SlSSMlgd/g8pHKDupNtf3qqf6g2kYnDjH5xR//Jv2VlsEJ+7ZcWznJqmH2iJTF9kxtNu km9+pDh42lc9PnvIPRAI/IeeWtIQs9Tqptj88b798yCa6fi+QqDmPa87YHwh+l5W9gw+ 2NmKvfdwPrqpdkM5Mzrc5c2MMBCdSRMGkfqlNsQwEjZ8ht48RIBaCmINXthuDSUHR80j JcbQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id v14si1615973eje.178.2020.11.29.10.57.03; Sun, 29 Nov 2020 10:57:26 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726961AbgK2Szp (ORCPT + 99 others); Sun, 29 Nov 2020 13:55:45 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36698 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725468AbgK2Szp (ORCPT ); Sun, 29 Nov 2020 13:55:45 -0500 Received: from viti.kaiser.cx (viti.kaiser.cx [IPv6:2a01:238:43fe:e600:cd0c:bd4a:7a3:8e9f]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 282E4C0613CF for ; Sun, 29 Nov 2020 10:55:05 -0800 (PST) Received: from dslb-178-004-174-066.178.004.pools.vodafone-ip.de ([178.4.174.66] helo=martin-debian-2.paytec.ch) by viti.kaiser.cx with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1kjRqd-0005jB-5H; Sun, 29 Nov 2020 19:54:59 +0100 From: Martin Kaiser To: Jassi Brar , Maxime Coquelin , Alexandre Torgue , Fabien Dessenne Cc: linux-stm32@st-md-mailman.stormreply.com, linux-kernel@vger.kernel.org, Martin Kaiser Subject: [PATCH RESEND v2 1/3] mailbox: stm32-ipcc: add COMPILE_TEST dependency Date: Sun, 29 Nov 2020 19:52:26 +0100 Message-Id: <20201129185228.16213-1-martin@kaiser.cx> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201024133154.22767-1-martin@kaiser.cx> References: <20201024133154.22767-1-martin@kaiser.cx> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This allows compiling the driver on architectures where the hardware is not available. Most other mailbox drivers support this as well. Signed-off-by: Martin Kaiser Reviewed-by: Fabien Dessenne --- changes in v2 - added Fabien's review tag Dear all, this has been around for some weeks now. Is there anything else you need before these simple patches can be merged? Thanks, Martin drivers/mailbox/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig index 05b1009e2820..abbf5d67ffa2 100644 --- a/drivers/mailbox/Kconfig +++ b/drivers/mailbox/Kconfig @@ -201,7 +201,7 @@ config BCM_FLEXRM_MBOX config STM32_IPCC tristate "STM32 IPCC Mailbox" - depends on MACH_STM32MP157 + depends on MACH_STM32MP157 || COMPILE_TEST help Mailbox implementation for STMicroelectonics STM32 family chips with hardware for Inter-Processor Communication Controller (IPCC) -- 2.20.1