Fix two format string mismatch in genwqe_init_debugfs()

Signed-off-by: Masanari Iida <[email protected]>
---
 drivers/misc/genwqe/card_debugfs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/genwqe/card_debugfs.c 
b/drivers/misc/genwqe/card_debugfs.c
index 50d2096..0a33ade 100644
--- a/drivers/misc/genwqe/card_debugfs.c
+++ b/drivers/misc/genwqe/card_debugfs.c
@@ -348,7 +348,7 @@ int genwqe_init_debugfs(struct genwqe_dev *cd)
        char name[64];
        unsigned int i;
 
-       sprintf(card_name, "%s%u_card", GENWQE_DEVNAME, cd->card_idx);
+       sprintf(card_name, "%s%d_card", GENWQE_DEVNAME, cd->card_idx);
 
        root = debugfs_create_dir(card_name, cd->debugfs_genwqe);
        if (!root) {
@@ -454,7 +454,7 @@ int genwqe_init_debugfs(struct genwqe_dev *cd)
        }
 
        for (i = 0; i <  GENWQE_MAX_VFS; i++) {
-               sprintf(name, "vf%d_jobtimeout_msec", i);
+               sprintf(name, "vf%u_jobtimeout_msec", i);
 
                file = debugfs_create_u32(name, 0666, root,
                                          &cd->vf_jobtimeout_msec[i]);
-- 
2.0.0.rc0.26.g779792a

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to