mmc: debugfs: convert permissions to octal
authorRouven Czerwinski <r.czerwinski@pengutronix.de>
Tue, 26 Mar 2024 09:42:13 +0000 (10:42 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 2 Apr 2024 10:25:08 +0000 (12:25 +0200)
Convert the existing symbolic permissions to the octal presentation as
this is the preferred representation for debugfs permissions.

Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Link: https://lore.kernel.org/r/20240326094215.212930-1-r.czerwinski@pengutronix.de
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/core/debugfs.c

index 1642ea72d22c5ca93e3c3d8479680fb6656a7e7a..6dbab860e453b707dcf55ca3401f23c518627864 100644 (file)
@@ -351,11 +351,11 @@ void mmc_add_host_debugfs(struct mmc_host *host)
        root = debugfs_create_dir(mmc_hostname(host), NULL);
        host->debugfs_root = root;
 
-       debugfs_create_file("ios", S_IRUSR, root, host, &mmc_ios_fops);
+       debugfs_create_file("ios", 0400, root, host, &mmc_ios_fops);
        debugfs_create_file("caps", 0600, root, &host->caps, &mmc_caps_fops);
        debugfs_create_file("caps2", 0600, root, &host->caps2,
                            &mmc_caps2_fops);
-       debugfs_create_file_unsafe("clock", S_IRUSR | S_IWUSR, root, host,
+       debugfs_create_file_unsafe("clock", 0600, root, host,
                                   &mmc_clock_fops);
 
        debugfs_create_file_unsafe("err_state", 0600, root, host,
@@ -388,7 +388,7 @@ void mmc_add_card_debugfs(struct mmc_card *card)
        root = debugfs_create_dir(mmc_card_id(card), host->debugfs_root);
        card->debugfs_root = root;
 
-       debugfs_create_x32("state", S_IRUSR, root, &card->state);
+       debugfs_create_x32("state", 0400, root, &card->state);
 }
 
 void mmc_remove_card_debugfs(struct mmc_card *card)