x86, mtrr: Convert loop to a while based construct, avoid naked semicolon
Perhaps this is a more readable/standard form. Signed-off-by: Joe Perches <joe@perches.com> LKML-Reference: <1252945687.3937.14.camel@Joe-Laptop.home> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -126,8 +126,8 @@ mtrr_write(struct file *file, const char __user *buf, size_t len, loff_t * ppos)
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
base = simple_strtoull(line + 5, &ptr, 0);
|
base = simple_strtoull(line + 5, &ptr, 0);
|
||||||
for (; isspace(*ptr); ++ptr)
|
while (isspace(*ptr))
|
||||||
;
|
ptr++;
|
||||||
|
|
||||||
if (strncmp(ptr, "size=", 5))
|
if (strncmp(ptr, "size=", 5))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
@@ -135,14 +135,14 @@ mtrr_write(struct file *file, const char __user *buf, size_t len, loff_t * ppos)
|
|||||||
size = simple_strtoull(ptr + 5, &ptr, 0);
|
size = simple_strtoull(ptr + 5, &ptr, 0);
|
||||||
if ((base & 0xfff) || (size & 0xfff))
|
if ((base & 0xfff) || (size & 0xfff))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
for (; isspace(*ptr); ++ptr)
|
while (isspace(*ptr))
|
||||||
;
|
ptr++;
|
||||||
|
|
||||||
if (strncmp(ptr, "type=", 5))
|
if (strncmp(ptr, "type=", 5))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
ptr += 5;
|
ptr += 5;
|
||||||
for (; isspace(*ptr); ++ptr)
|
while (isspace(*ptr))
|
||||||
;
|
ptr++;
|
||||||
|
|
||||||
for (i = 0; i < MTRR_NUM_TYPES; ++i) {
|
for (i = 0; i < MTRR_NUM_TYPES; ++i) {
|
||||||
if (strcmp(ptr, mtrr_strings[i]))
|
if (strcmp(ptr, mtrr_strings[i]))
|
||||||
|
Reference in New Issue
Block a user