From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9AAD32DF9F; Tue, 20 Feb 2024 21:22:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708464172; cv=none; b=e9DLktt7VmGBTBnrEmzBVRJUCq+rVG8a+Z2rgMnwbLCCWgLe+gtlGzS9HCNO5xLhrjIekA6C6tYB3SbQveniUKWCbbg9e0Z7WadN5pLeTQaU5eOyqVPJHu2ZeICrhb6H4Km2TAUudoLbwtqgV6y8aDU42ZfugyumtGJVwUu3yQs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708464172; c=relaxed/simple; bh=wVxNILlFQ1cSMSHooifCFv4MPAhNYEBBgec6F9X82yk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CDTrC9v2ApdSuWmgtPFopJAVa8K0AHrMbzhI7kiIPBEdS4GYd8AcBsJz+7iySjiMAfWOSmOFAmaKWxo/ts4y3B7kb5AbIQ9xJoKsYHrq9kcEsUILjNLSWzFRcmEJ+CDhRV/D4WKmfJpJilz474nxPOkpUy3hTRdVEOb7figWkb4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ZnJpZh28; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ZnJpZh28" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6F7BC433C7; Tue, 20 Feb 2024 21:22:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708464172; bh=wVxNILlFQ1cSMSHooifCFv4MPAhNYEBBgec6F9X82yk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZnJpZh28T0TfYM4ixBH9vHUym0/J9qFvzmvK++W9Eu+4jQ49ksWhfikxSM5+XqVP8 IfQOiCEpZKtACLM1P1uLtuuoyZhqI7YwWxyCbqe2Sf3qe+hGMpwFU/F8Q2LIODx2jP d8HXnBIA+ElWGlVJB0neE5GaVAC4p3ZtX+QNN18Y= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Nuno Sa , Saravana Kannan , Jonathan Cameron , Rob Herring Subject: [PATCH 6.6 245/331] of: property: fix typo in io-channels Date: Tue, 20 Feb 2024 21:56:01 +0100 Message-ID: <20240220205645.514548426@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240220205637.572693592@linuxfoundation.org> References: <20240220205637.572693592@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Nuno Sa commit 8f7e917907385e112a845d668ae2832f41e64bf5 upstream. The property is io-channels and not io-channel. This was effectively preventing the devlink creation. Fixes: 8e12257dead7 ("of: property: Add device link support for iommus, mboxes and io-channels") Cc: stable@vger.kernel.org Signed-off-by: Nuno Sa Reviewed-by: Saravana Kannan Acked-by: Jonathan Cameron Link: https://lore.kernel.org/r/20240123-iio-backend-v7-1-1bff236b8693@analog.com Signed-off-by: Rob Herring Signed-off-by: Greg Kroah-Hartman --- drivers/of/property.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/of/property.c +++ b/drivers/of/property.c @@ -1213,7 +1213,7 @@ DEFINE_SIMPLE_PROP(clocks, "clocks", "#c DEFINE_SIMPLE_PROP(interconnects, "interconnects", "#interconnect-cells") DEFINE_SIMPLE_PROP(iommus, "iommus", "#iommu-cells") DEFINE_SIMPLE_PROP(mboxes, "mboxes", "#mbox-cells") -DEFINE_SIMPLE_PROP(io_channels, "io-channel", "#io-channel-cells") +DEFINE_SIMPLE_PROP(io_channels, "io-channels", "#io-channel-cells") DEFINE_SIMPLE_PROP(interrupt_parent, "interrupt-parent", NULL) DEFINE_SIMPLE_PROP(dmas, "dmas", "#dma-cells") DEFINE_SIMPLE_PROP(power_domains, "power-domains", "#power-domain-cells")