|
@@ -277,14 +277,14 @@ int nd_uuid_store(struct device *dev, u8 **uuid_out, const char *buf,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-ssize_t nd_sector_size_show(unsigned long current_lbasize,
|
|
|
+ssize_t nd_size_select_show(unsigned long current_size,
|
|
|
const unsigned long *supported, char *buf)
|
|
|
{
|
|
|
ssize_t len = 0;
|
|
|
int i;
|
|
|
|
|
|
for (i = 0; supported[i]; i++)
|
|
|
- if (current_lbasize == supported[i])
|
|
|
+ if (current_size == supported[i])
|
|
|
len += sprintf(buf + len, "[%ld] ", supported[i]);
|
|
|
else
|
|
|
len += sprintf(buf + len, "%ld ", supported[i]);
|
|
@@ -292,8 +292,8 @@ ssize_t nd_sector_size_show(unsigned long current_lbasize,
|
|
|
return len;
|
|
|
}
|
|
|
|
|
|
-ssize_t nd_sector_size_store(struct device *dev, const char *buf,
|
|
|
- unsigned long *current_lbasize, const unsigned long *supported)
|
|
|
+ssize_t nd_size_select_store(struct device *dev, const char *buf,
|
|
|
+ unsigned long *current_size, const unsigned long *supported)
|
|
|
{
|
|
|
unsigned long lbasize;
|
|
|
int rc, i;
|
|
@@ -310,7 +310,7 @@ ssize_t nd_sector_size_store(struct device *dev, const char *buf,
|
|
|
break;
|
|
|
|
|
|
if (supported[i]) {
|
|
|
- *current_lbasize = lbasize;
|
|
|
+ *current_size = lbasize;
|
|
|
return 0;
|
|
|
} else {
|
|
|
return -EINVAL;
|