aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/raid10.h
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2011-10-11 01:49:02 -0400
committerNeilBrown <neilb@suse.de>2011-10-11 01:49:02 -0400
commite879a8793f915aa7933364d962d2435bd71de462 (patch)
treebf62ccd52171bdaebd1d09b98f049950e39dd198 /drivers/md/raid10.h
parente373ab109172abc2d821bd3b5c1b400acddef5a5 (diff)
md/raid10: typedef removal: conf_t -> struct r10conf
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/raid10.h')
-rw-r--r--drivers/md/raid10.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/md/raid10.h b/drivers/md/raid10.h
index 94f898a11be4..35489a569597 100644
--- a/drivers/md/raid10.h
+++ b/drivers/md/raid10.h
@@ -11,7 +11,7 @@ struct mirror_info {
11 */ 11 */
12}; 12};
13 13
14struct r10_private_data_s { 14struct r10conf {
15 struct mddev *mddev; 15 struct mddev *mddev;
16 struct mirror_info *mirrors; 16 struct mirror_info *mirrors;
17 int raid_disks; 17 int raid_disks;
@@ -67,8 +67,6 @@ struct r10_private_data_s {
67 struct md_thread *thread; 67 struct md_thread *thread;
68}; 68};
69 69
70typedef struct r10_private_data_s conf_t;
71
72/* 70/*
73 * this is our 'private' RAID10 bio. 71 * this is our 'private' RAID10 bio.
74 * 72 *