From mboxrd@z Thu Jan 1 00:00:00 1970 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 69956EB64DD for ; Mon, 7 Aug 2023 08:46:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229654AbjHGIqS (ORCPT ); Mon, 7 Aug 2023 04:46:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36706 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229512AbjHGIqR (ORCPT ); Mon, 7 Aug 2023 04:46:17 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 06BEC92; Mon, 7 Aug 2023 01:46:17 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 971FE615F5; Mon, 7 Aug 2023 08:46:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0B26C433C8; Mon, 7 Aug 2023 08:46:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691397976; bh=gmL0M/6OzGAUmTz+EM8z1UlkEbfkUv74TK4ii5tZs3Q=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oknCvoCaUlRhmw5A62sGWLQYBTg2Roykrqyu4tsNE3feFsJxcwOVQ2Hqeq9c7T+yG 9RX+BFScmMDCZ2Q3b2JWWHPwVCXPEPPTaToEFHSs4ecgmQ61Xuj4RQsXT5eIf/PWHp 2Zaanl5dedFp/fV/LqAfHmXHMgjTakcasAJE5e623iLRscqOTmAW8bEspwm8DTv1n4 XG0FX8Pi5cu8go3ti8fGRb0TDRzm0vo+vsn7jLFS/bfH+8gYiWNKEJNZiNpvdQC6e7 WpIAfgbM3JS5LEp4BZx16pEIZuJDMK+pQ0YIrCGBNnjFF5oXfZgqDSjAgyf4LDh8dk uyNVp4i9NDtOQ== Received: from johan by xi.lan with local (Exim 4.96) (envelope-from ) id 1qSvsU-0007Ti-1K; Mon, 07 Aug 2023 10:46:15 +0200 Date: Mon, 7 Aug 2023 10:46:14 +0200 From: Johan Hovold To: Maximilian Luz Cc: Bjorn Andersson , Andy Gross , Konrad Dybcio , Ard Biesheuvel , Ilias Apalodimas , Srinivas Kandagatla , Sudeep Holla , Steev Klimaszewski , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 2/3] firmware: qcom_scm: Add support for Qualcomm Secure Execution Environment SCM interface Message-ID: References: <20230730161906.606163-1-luzmaximilian@gmail.com> <20230730161906.606163-3-luzmaximilian@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On Fri, Aug 04, 2023 at 10:11:18PM +0200, Maximilian Luz wrote: > On 8/4/23 18:48, Johan Hovold wrote: > > On Sun, Jul 30, 2023 at 06:19:03PM +0200, Maximilian Luz wrote: > >> +MODULE_ALIAS("platform:qcom_qseecom"); > > > > No need for MODULE_ALIAS() either. > > Oh right. As long as the module and device name match this should work > automatically, correct? I forgot about that. Yeah, the module alias is only used when determining which modules to load. The driver and platform device will still be matched and bound based on their names. Johan