diff mbox series

mhi: Rename debugfs directory name

Message ID 1613403753-1457-1-git-send-email-loic.poulain@linaro.org
State Accepted
Commit e5b53b5be677b3e78960974d4c36acc752505f53
Headers show
Series mhi: Rename debugfs directory name | expand

Commit Message

Loic Poulain Feb. 15, 2021, 3:42 p.m. UTC
Use MHI controller device name instead of the 'bus' device name as
debugfs dir name (e.g. /sys/kernel/debug/mhi0). That aligns with
sysfs device name.

Signed-off-by: Loic Poulain <loic.poulain@linaro.org>

---
 drivers/bus/mhi/core/debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.7.4

Comments

Jeffrey Hugo Feb. 16, 2021, 12:20 a.m. UTC | #1
On 2/15/2021 8:42 AM, Loic Poulain wrote:
> Use MHI controller device name instead of the 'bus' device name as

> debugfs dir name (e.g. /sys/kernel/debug/mhi0). That aligns with

> sysfs device name.

> 

> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>


Reviewed-by: Jeffrey Hugo <jhugo@codeaurora.org>

Tested-by: Jeffrey Hugo <jhugo@codeaurora.org>


-- 
Jeffrey Hugo
Qualcomm Technologies, Inc. is a member of the
Code Aurora Forum, a Linux Foundation Collaborative Project.
Manivannan Sadhasivam Feb. 16, 2021, 7:15 a.m. UTC | #2
On Mon, Feb 15, 2021 at 04:42:33PM +0100, Loic Poulain wrote:
> Use MHI controller device name instead of the 'bus' device name as

> debugfs dir name (e.g. /sys/kernel/debug/mhi0). That aligns with

> sysfs device name.

> 

> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>


Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>


Thanks,
Mani

> ---

>  drivers/bus/mhi/core/debugfs.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/drivers/bus/mhi/core/debugfs.c b/drivers/bus/mhi/core/debugfs.c

> index 7d43138..858d751 100644

> --- a/drivers/bus/mhi/core/debugfs.c

> +++ b/drivers/bus/mhi/core/debugfs.c

> @@ -377,7 +377,7 @@ static struct dentry *mhi_debugfs_root;

>  void mhi_create_debugfs(struct mhi_controller *mhi_cntrl)

>  {

>  	mhi_cntrl->debugfs_dentry =

> -			debugfs_create_dir(dev_name(mhi_cntrl->cntrl_dev),

> +			debugfs_create_dir(dev_name(&mhi_cntrl->mhi_dev->dev),

>  					   mhi_debugfs_root);

>  

>  	debugfs_create_file("states", 0444, mhi_cntrl->debugfs_dentry,

> -- 

> 2.7.4

>
Manivannan Sadhasivam March 10, 2021, 1:49 p.m. UTC | #3
On Mon, Feb 15, 2021 at 04:42:33PM +0100, Loic Poulain wrote:
> Use MHI controller device name instead of the 'bus' device name as

> debugfs dir name (e.g. /sys/kernel/debug/mhi0). That aligns with

> sysfs device name.

> 

> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>


Applied to mhi-next!

Thanks,
Mani

> ---

>  drivers/bus/mhi/core/debugfs.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/drivers/bus/mhi/core/debugfs.c b/drivers/bus/mhi/core/debugfs.c

> index 7d43138..858d751 100644

> --- a/drivers/bus/mhi/core/debugfs.c

> +++ b/drivers/bus/mhi/core/debugfs.c

> @@ -377,7 +377,7 @@ static struct dentry *mhi_debugfs_root;

>  void mhi_create_debugfs(struct mhi_controller *mhi_cntrl)

>  {

>  	mhi_cntrl->debugfs_dentry =

> -			debugfs_create_dir(dev_name(mhi_cntrl->cntrl_dev),

> +			debugfs_create_dir(dev_name(&mhi_cntrl->mhi_dev->dev),

>  					   mhi_debugfs_root);

>  

>  	debugfs_create_file("states", 0444, mhi_cntrl->debugfs_dentry,

> -- 

> 2.7.4

>
patchwork-bot+linux-arm-msm@kernel.org May 26, 2021, 7:03 p.m. UTC | #4
Hello:

This patch was applied to qcom/linux.git (refs/heads/for-next):

On Mon, 15 Feb 2021 16:42:33 +0100 you wrote:
> Use MHI controller device name instead of the 'bus' device name as

> debugfs dir name (e.g. /sys/kernel/debug/mhi0). That aligns with

> sysfs device name.

> 

> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>

> ---

>  drivers/bus/mhi/core/debugfs.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)


Here is the summary with links:
  - mhi: Rename debugfs directory name
    https://git.kernel.org/qcom/c/e5b53b5be677

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/bus/mhi/core/debugfs.c b/drivers/bus/mhi/core/debugfs.c
index 7d43138..858d751 100644
--- a/drivers/bus/mhi/core/debugfs.c
+++ b/drivers/bus/mhi/core/debugfs.c
@@ -377,7 +377,7 @@  static struct dentry *mhi_debugfs_root;
 void mhi_create_debugfs(struct mhi_controller *mhi_cntrl)
 {
 	mhi_cntrl->debugfs_dentry =
-			debugfs_create_dir(dev_name(mhi_cntrl->cntrl_dev),
+			debugfs_create_dir(dev_name(&mhi_cntrl->mhi_dev->dev),
 					   mhi_debugfs_root);
 
 	debugfs_create_file("states", 0444, mhi_cntrl->debugfs_dentry,