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 alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (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 628E0C64EC4 for ; Fri, 10 Mar 2023 07:09:00 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 0448E17C9; Fri, 10 Mar 2023 08:08:07 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 0448E17C9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1678432137; bh=fRVlA/oHWnBpIJsM5p241fEwlFs/wi5MvbKj6aoXhCg=; h=Date:From:To:Subject:References:In-Reply-To:CC:List-Id: List-Archive:List-Help:List-Owner:List-Post:List-Subscribe: List-Unsubscribe:From; b=Gqm7WeyPPa269KrxyLOPVeJoFoT2eVUNUWOnhYfKOabydd7LvxMXqx/rR54a1Y19n B7rzKNkTNWnLLKjcqTCb5AJ5XNM/ZRUbFeqhrgBxHdozUsdWGjBGcgdW6qQ4wobllU NBAYHwZ7eA0PDQ4CFgfgZHiR5zhX6TVey27ra//A= Received: from mailman-core.alsa-project.org (mailman-core.alsa-project.org [10.254.200.10]) by alsa1.perex.cz (Postfix) with ESMTP id 50CA9F8007E; Fri, 10 Mar 2023 08:07:45 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id E289BF8042F; Fri, 10 Mar 2023 08:07:39 +0100 (CET) Received: from bitmer.com (server-237-49.tentacle.cloud [185.179.237.49]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id F2AB6F8007E; Fri, 10 Mar 2023 08:07:32 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz F2AB6F8007E Received: from jarkko by bitmer.com with local (Exim 4.92) (envelope-from ) id 1paWpw-0003gh-Gf; Fri, 10 Mar 2023 09:06:44 +0200 Date: Fri, 10 Mar 2023 09:06:44 +0200 From: Jarkko Nikula To: Claudiu Beznea Subject: Re: [PATCH] ASoC: do not include pm_runtime.h if not used Message-ID: <20230310070644.GA13582@bitmer.com> References: <20230307103022.1007420-1-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230307103022.1007420-1-claudiu.beznea@microchip.com> User-Agent: Mutt/1.10.1 (2018-07-13) Message-ID-Hash: S6GSAFPQBQORNEPX6JQB6ZPCUCQOXTYD X-Message-ID-Hash: S6GSAFPQBQORNEPX6JQB6ZPCUCQOXTYD X-MailFrom: jarkko.nikula@bitmer.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-alsa-devel.alsa-project.org-0; header-match-alsa-devel.alsa-project.org-1; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: tiwai@suse.com, lgirdwood@gmail.com, broonie@kernel.org, james.schulman@cirrus.com, david.rhodes@cirrus.com, tanureal@opensource.cirrus.com, rf@opensource.cirrus.com, oder_chiou@realtek.com, shengjiu.wang@gmail.com, Xiubo.Lee@gmail.com, festevam@gmail.com, nicoleotsuka@gmail.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, linux-imx@nxp.com, cezary.rojewski@intel.com, pierre-louis.bossart@linux.intel.com, peter.ujfalusi@linux.intel.com, yung-chuan.liao@linux.intel.com, ranjani.sridharan@linux.intel.com, kai.vehmanen@linux.intel.com, matthias.bgg@gmail.com, srinivas.kandagatla@linaro.org, bgoswami@quicinc.com, vkoul@kernel.org, daniel.baluta@nxp.com, thierry.reding@gmail.com, jonathanh@nvidia.com, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, patches@opensource.cirrus.com, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, sound-open-firmware@alsa-project.org, linux-tegra@vger.kernel.org, linux-omap@vger.kernel.org X-Mailman-Version: 3.3.8 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On Tue, Mar 07, 2023 at 12:30:22PM +0200, Claudiu Beznea wrote: > Do not include pm_runtime.h header in files where runtime PM support is > not implemented. > > Signed-off-by: Claudiu Beznea > --- ... > sound/soc/ti/omap-mcbsp-st.c | 1 - > 36 files changed, 37 deletions(-) Looks like header was copied by accident from omap-mcbsp.c when sidetone functionality was split into this new file. Acked-by: Jarkko Nikula 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 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 C9598C6FA99 for ; Fri, 10 Mar 2023 07:07:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=0KiZWQvFJRfa63tGK2tSC7sVHj6kzq5OwpzvzUwFG6k=; b=mVeKMTjxFIzyiKYdHO28+6MIHE QcA4l3HFaE9pExHLARJVTHSlGr2dzQpZC2ZiXry6vf8Vfd024cYz54HAo8ZGnYXDjKmYwqvWTBCzV kPtu26jrTLiNaHeb810OyF0LzVt7RvtI6VYv/CqlNJbF2PlXysN6cqWMpVuOiULfXYthymIcxBuIQ m3/Fg2aVkk0dXjAYUYxfebnWWY1i9e9lCpHfBHmoQaoWGTMnT4BZAKdQ+5njdWiqsPiCzJNSsBqLq eBcrpkLfiZvBStkON3y3USrNMlMpP2Lcpr/cuIME3m/pO/Ev8KeMiaWQRiSO0+qJ+TWpJlbIlfFLx MxQc7SPQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1paWqx-00DM6Q-1B; Fri, 10 Mar 2023 07:07:47 +0000 Received: from server-237-49.tentacle.cloud ([185.179.237.49] helo=bitmer.com) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1paWqn-00DM3x-5i; Fri, 10 Mar 2023 07:07:38 +0000 Received: from jarkko by bitmer.com with local (Exim 4.92) (envelope-from ) id 1paWpw-0003gh-Gf; Fri, 10 Mar 2023 09:06:44 +0200 Date: Fri, 10 Mar 2023 09:06:44 +0200 From: Jarkko Nikula To: Claudiu Beznea Cc: perex@perex.cz, tiwai@suse.com, lgirdwood@gmail.com, broonie@kernel.org, james.schulman@cirrus.com, david.rhodes@cirrus.com, tanureal@opensource.cirrus.com, rf@opensource.cirrus.com, oder_chiou@realtek.com, shengjiu.wang@gmail.com, Xiubo.Lee@gmail.com, festevam@gmail.com, nicoleotsuka@gmail.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, linux-imx@nxp.com, cezary.rojewski@intel.com, pierre-louis.bossart@linux.intel.com, peter.ujfalusi@linux.intel.com, yung-chuan.liao@linux.intel.com, ranjani.sridharan@linux.intel.com, kai.vehmanen@linux.intel.com, matthias.bgg@gmail.com, srinivas.kandagatla@linaro.org, bgoswami@quicinc.com, vkoul@kernel.org, daniel.baluta@nxp.com, thierry.reding@gmail.com, jonathanh@nvidia.com, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, patches@opensource.cirrus.com, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, sound-open-firmware@alsa-project.org, linux-tegra@vger.kernel.org, linux-omap@vger.kernel.org Subject: Re: [PATCH] ASoC: do not include pm_runtime.h if not used Message-ID: <20230310070644.GA13582@bitmer.com> References: <20230307103022.1007420-1-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230307103022.1007420-1-claudiu.beznea@microchip.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230309_230737_231812_44DC1885 X-CRM114-Status: UNSURE ( 8.37 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-mediatek@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-mediatek" Errors-To: linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org On Tue, Mar 07, 2023 at 12:30:22PM +0200, Claudiu Beznea wrote: > Do not include pm_runtime.h header in files where runtime PM support is > not implemented. > > Signed-off-by: Claudiu Beznea > --- ... > sound/soc/ti/omap-mcbsp-st.c | 1 - > 36 files changed, 37 deletions(-) Looks like header was copied by accident from omap-mcbsp.c when sidetone functionality was split into this new file. Acked-by: Jarkko Nikula 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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (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 C4D99C6FA99 for ; Fri, 10 Mar 2023 07:26:24 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4PXyKC1cZHz3fK3 for ; Fri, 10 Mar 2023 18:26:23 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=bitmer.com (client-ip=185.179.237.49; helo=bitmer.com; envelope-from=jarkko.nikula@bitmer.com; receiver=) X-Greylist: delayed 1097 seconds by postgrey-1.36 at boromir; Fri, 10 Mar 2023 18:25:49 AEDT Received: from bitmer.com (server-237-49.tentacle.cloud [185.179.237.49]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4PXyJY61tNz3cMT for ; Fri, 10 Mar 2023 18:25:49 +1100 (AEDT) Received: from jarkko by bitmer.com with local (Exim 4.92) (envelope-from ) id 1paWpw-0003gh-Gf; Fri, 10 Mar 2023 09:06:44 +0200 Date: Fri, 10 Mar 2023 09:06:44 +0200 From: Jarkko Nikula To: Claudiu Beznea Subject: Re: [PATCH] ASoC: do not include pm_runtime.h if not used Message-ID: <20230310070644.GA13582@bitmer.com> References: <20230307103022.1007420-1-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230307103022.1007420-1-claudiu.beznea@microchip.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: daniel.baluta@nxp.com, cezary.rojewski@intel.com, tanureal@opensource.cirrus.com, Xiubo.Lee@gmail.com, alsa-devel@alsa-project.org, lgirdwood@gmail.com, linux-tegra@vger.kernel.org, thierry.reding@gmail.com, srinivas.kandagatla@linaro.org, festevam@gmail.com, sound-open-firmware@alsa-project.org, shengjiu.wang@gmail.com, linux-omap@vger.kernel.org, yung-chuan.liao@linux.intel.com, ranjani.sridharan@linux.intel.com, pierre-louis.bossart@linux.intel.com, jonathanh@nvidia.com, linux-imx@nxp.com, bgoswami@quicinc.com, s.hauer@pengutronix.de, linuxppc-dev@lists.ozlabs.org, james.schulman@cirrus.com, nicoleotsuka@gmail.com, rf@opensource.cirrus.com, broonie@kernel.org, linux-mediatek@lists.infradead.org, matthias.bgg@gmail.com, perex@perex.cz, peter.ujfalusi@linux.intel.com, linux-arm-kernel@lists.infradead.org, oder_chiou@realtek.com, kai.vehmanen@linux.intel.com, patches@opensource.cirrus.com, david.rhodes@cirrus.com, tiwai@suse.com, linux-kernel@vger.kernel.org, vkoul@kernel.org, ke rnel@pengutronix.de, shawnguo@kernel.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Tue, Mar 07, 2023 at 12:30:22PM +0200, Claudiu Beznea wrote: > Do not include pm_runtime.h header in files where runtime PM support is > not implemented. > > Signed-off-by: Claudiu Beznea > --- ... > sound/soc/ti/omap-mcbsp-st.c | 1 - > 36 files changed, 37 deletions(-) Looks like header was copied by accident from omap-mcbsp.c when sidetone functionality was split into this new file. Acked-by: Jarkko Nikula 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 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 E58BDC64EC4 for ; Fri, 10 Mar 2023 07:08:35 +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:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=HIxWqbQK4Y9LeTWHbXKj/taDl2heZwW3O5SvhsqPqo4=; b=Z11jrV7Vm6QKPI xqt1164WCOyf5w79RiH9XQMjSnaV05+UswGFb10X6Sy52IkfU18zTUPyS7HOlG9JasFXb5qq5N9G3 5gJ1y4G+cGmhB+V/VifzSJeauR84OyjKGfLbOGQav7XeBkStwQNVHLBQd1LrSvuR5tFVAZa5EU4ti EO3coNJ4W9EZqg6Aana3nZI5MG1HdPcP1gV2o62KwWlaaXolVQZ6S6UCsNsQw0fBcSfGItSCSsB01 howFpnsjKNcSD3YVOBLRHP8oDpBD7nubKbUcsSV4cTyHewJjt53WO+J3X65knx+179O4E35SUJB9F aKLbP8sFzDe6tO55bSDw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1paWqp-00DM5J-Ud; Fri, 10 Mar 2023 07:07:40 +0000 Received: from server-237-49.tentacle.cloud ([185.179.237.49] helo=bitmer.com) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1paWqn-00DM3x-5i; Fri, 10 Mar 2023 07:07:38 +0000 Received: from jarkko by bitmer.com with local (Exim 4.92) (envelope-from ) id 1paWpw-0003gh-Gf; Fri, 10 Mar 2023 09:06:44 +0200 Date: Fri, 10 Mar 2023 09:06:44 +0200 From: Jarkko Nikula To: Claudiu Beznea Cc: perex@perex.cz, tiwai@suse.com, lgirdwood@gmail.com, broonie@kernel.org, james.schulman@cirrus.com, david.rhodes@cirrus.com, tanureal@opensource.cirrus.com, rf@opensource.cirrus.com, oder_chiou@realtek.com, shengjiu.wang@gmail.com, Xiubo.Lee@gmail.com, festevam@gmail.com, nicoleotsuka@gmail.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, linux-imx@nxp.com, cezary.rojewski@intel.com, pierre-louis.bossart@linux.intel.com, peter.ujfalusi@linux.intel.com, yung-chuan.liao@linux.intel.com, ranjani.sridharan@linux.intel.com, kai.vehmanen@linux.intel.com, matthias.bgg@gmail.com, srinivas.kandagatla@linaro.org, bgoswami@quicinc.com, vkoul@kernel.org, daniel.baluta@nxp.com, thierry.reding@gmail.com, jonathanh@nvidia.com, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, patches@opensource.cirrus.com, linuxppc-dev@lists.ozlabs.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, sound-open-firmware@alsa-project.org, linux-tegra@vger.kernel.org, linux-omap@vger.kernel.org Subject: Re: [PATCH] ASoC: do not include pm_runtime.h if not used Message-ID: <20230310070644.GA13582@bitmer.com> References: <20230307103022.1007420-1-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230307103022.1007420-1-claudiu.beznea@microchip.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230309_230737_231812_44DC1885 X-CRM114-Status: UNSURE ( 8.37 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, Mar 07, 2023 at 12:30:22PM +0200, Claudiu Beznea wrote: > Do not include pm_runtime.h header in files where runtime PM support is > not implemented. > > Signed-off-by: Claudiu Beznea > --- ... > sound/soc/ti/omap-mcbsp-st.c | 1 - > 36 files changed, 37 deletions(-) Looks like header was copied by accident from omap-mcbsp.c when sidetone functionality was split into this new file. Acked-by: Jarkko Nikula _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel