diff options
author | Artem Bityutskiy <Artem.Bityutskiy@linux.intel.com> | 2012-05-17 06:09:08 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-05-20 13:26:02 -0400 |
commit | a4e6042f1d073073f88e0ad6d2a7450da9a3937d (patch) | |
tree | c9849fa560e49308275254ce65603c909566131b /drivers/mtd/ubi/debug.c | |
parent | 2c5ec5ce66c0170829c5c128b9235429936442ac (diff) |
UBI: rename si to ai
After re-naming the 'struct ubi_scan_info' we should adjust all variables
named 'si' to something else, because 'si' stands for "scanning info".
Let's rename it to 'ai' which stands for "attaching info" which is
a bit more consistent and has the same length, which makes re-naming easy.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/ubi/debug.c')
-rw-r--r-- | drivers/mtd/ubi/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/debug.c b/drivers/mtd/ubi/debug.c index e73b1fef897d..84362a802999 100644 --- a/drivers/mtd/ubi/debug.c +++ b/drivers/mtd/ubi/debug.c | |||
@@ -176,7 +176,7 @@ void ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx) | |||
176 | */ | 176 | */ |
177 | void ubi_dump_sv(const struct ubi_ainf_volume *sv) | 177 | void ubi_dump_sv(const struct ubi_ainf_volume *sv) |
178 | { | 178 | { |
179 | printk(KERN_DEBUG "Volume scanning information dump:\n"); | 179 | printk(KERN_DEBUG "Volume attaching information dump:\n"); |
180 | printk(KERN_DEBUG "\tvol_id %d\n", sv->vol_id); | 180 | printk(KERN_DEBUG "\tvol_id %d\n", sv->vol_id); |
181 | printk(KERN_DEBUG "\thighest_lnum %d\n", sv->highest_lnum); | 181 | printk(KERN_DEBUG "\thighest_lnum %d\n", sv->highest_lnum); |
182 | printk(KERN_DEBUG "\tleb_count %d\n", sv->leb_count); | 182 | printk(KERN_DEBUG "\tleb_count %d\n", sv->leb_count); |
@@ -194,7 +194,7 @@ void ubi_dump_sv(const struct ubi_ainf_volume *sv) | |||
194 | */ | 194 | */ |
195 | void ubi_dump_aeb(const struct ubi_ainf_peb *aeb, int type) | 195 | void ubi_dump_aeb(const struct ubi_ainf_peb *aeb, int type) |
196 | { | 196 | { |
197 | printk(KERN_DEBUG "eraseblock scanning information dump:\n"); | 197 | printk(KERN_DEBUG "eraseblock attaching information dump:\n"); |
198 | printk(KERN_DEBUG "\tec %d\n", aeb->ec); | 198 | printk(KERN_DEBUG "\tec %d\n", aeb->ec); |
199 | printk(KERN_DEBUG "\tpnum %d\n", aeb->pnum); | 199 | printk(KERN_DEBUG "\tpnum %d\n", aeb->pnum); |
200 | if (type == 0) { | 200 | if (type == 0) { |