diff options
author | Keyur Patel <iamkeyur96@gmail.com> | 2019-02-17 10:21:56 -0500 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-02-28 14:09:08 -0700 |
commit | dfc76d11dd455a63d50e63bf0a7edc690b3a37d0 (patch) | |
tree | 56c6a4bd4475ecd678646ec8fa9d69c71895ed0b /block/genhd.c | |
parent | cd46eb89dff7f6390eaeb11013bb23aae196bbfc (diff) | |
download | linux-dfc76d11dd455a63d50e63bf0a7edc690b3a37d0.tar.gz linux-dfc76d11dd455a63d50e63bf0a7edc690b3a37d0.tar.bz2 linux-dfc76d11dd455a63d50e63bf0a7edc690b3a37d0.zip |
block: Replace function name in string with __func__
Replace hard coded function name register_blkdev with __func__, to
improve robustness and to conform to the Linux kernel coding
style. Issue found using checkpatch.
Signed-off-by: Keyur Patel <iamkeyur96@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/genhd.c')
-rw-r--r-- | block/genhd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/block/genhd.c b/block/genhd.c index 78b82d26aa9c..703267865f14 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -365,8 +365,8 @@ int register_blkdev(unsigned int major, const char *name) } if (index == 0) { - printk("register_blkdev: failed to get major for %s\n", - name); + printk("%s: failed to get major for %s\n", + __func__, name); ret = -EBUSY; goto out; } @@ -375,8 +375,8 @@ int register_blkdev(unsigned int major, const char *name) } if (major >= BLKDEV_MAJOR_MAX) { - pr_err("register_blkdev: major requested (%u) is greater than the maximum (%u) for %s\n", - major, BLKDEV_MAJOR_MAX-1, name); + pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n", + __func__, major, BLKDEV_MAJOR_MAX-1, name); ret = -EINVAL; goto out; |