[AGPGART] Remove pointless assignment.
No point in clearing local pointers then returning. Also fix up some CodingStyle nits. Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
87a17f31a3
commit
7707ea3b78
1 changed files with 5 additions and 5 deletions
|
@ -124,18 +124,18 @@ static int ati_create_gatt_pages(int nr_tables)
|
|||
for (i = 0; i < nr_tables; i++) {
|
||||
entry = kzalloc(sizeof(struct ati_page_map), GFP_KERNEL);
|
||||
if (entry == NULL) {
|
||||
while (i>0) {
|
||||
kfree (tables[i-1]);
|
||||
while (i > 0) {
|
||||
kfree(tables[i-1]);
|
||||
i--;
|
||||
}
|
||||
kfree (tables);
|
||||
tables = NULL;
|
||||
kfree(tables);
|
||||
retval = -ENOMEM;
|
||||
break;
|
||||
}
|
||||
tables[i] = entry;
|
||||
retval = ati_create_page_map(entry);
|
||||
if (retval != 0) break;
|
||||
if (retval != 0)
|
||||
break;
|
||||
}
|
||||
ati_generic_private.num_tables = nr_tables;
|
||||
ati_generic_private.gatt_pages = tables;
|
||||
|
|
Loading…
Reference in a new issue