浏览代码

block: Constify disk_type

The variable 'disk_type' is never modified so constify it.

Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: Hannes Reinecke <hare@suse.com>
Cc: Omar Sandoval <osandov@fb.com>
Cc: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Bart Van Assche 8 年之前
父节点
当前提交
edf8ff5588
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      block/genhd.c

+ 2 - 2
block/genhd.c

@@ -36,7 +36,7 @@ struct kobject *block_depr;
 static DEFINE_SPINLOCK(ext_devt_lock);
 static DEFINE_SPINLOCK(ext_devt_lock);
 static DEFINE_IDR(ext_devt_idr);
 static DEFINE_IDR(ext_devt_idr);
 
 
-static struct device_type disk_type;
+static const struct device_type disk_type;
 
 
 static void disk_check_events(struct disk_events *ev,
 static void disk_check_events(struct disk_events *ev,
 			      unsigned int *clearing_ptr);
 			      unsigned int *clearing_ptr);
@@ -1183,7 +1183,7 @@ static char *block_devnode(struct device *dev, umode_t *mode,
 	return NULL;
 	return NULL;
 }
 }
 
 
-static struct device_type disk_type = {
+static const struct device_type disk_type = {
 	.name		= "disk",
 	.name		= "disk",
 	.groups		= disk_attr_groups,
 	.groups		= disk_attr_groups,
 	.release	= disk_release,
 	.release	= disk_release,