diff options
| author | Thomas Weißschuh <[email protected]> | 2023-05-30 19:09:58 +0200 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2023-05-30 11:12:43 -0600 |
| commit | cdb37f73cf05631c4f7401f2cd99878733c0c3d9 (patch) | |
| tree | 17fbebaad45715241074a5a8323bad520db60d74 /include/linux | |
| parent | 539050f92ea7666bca17c2c380d8071d2f93dcde (diff) | |
block: constify struct part_type part_type
The struct is never modified so it can be const.
Signed-off-by: Thomas Weißschuh <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index b2ac587e3402..d89c2da14698 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -41,7 +41,7 @@ struct blk_stat_callback; struct blk_crypto_profile; extern const struct device_type disk_type; -extern struct device_type part_type; +extern const struct device_type part_type; extern struct class block_class; /* |