]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] remove unnecessary parentheses from expand()
authorWilliam Lee Irwin III <wli@holomorphy.com>
Thu, 20 Jun 2002 06:54:23 +0000 (23:54 -0700)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Thu, 20 Jun 2002 06:54:23 +0000 (23:54 -0700)
Not sure why I forgot to do this, but here is a small bit of tidying up
of some leftover parentheses from the memlist macro removal. The
parentheses are just noise and should go.

mm/page_alloc.c

index 9aabaf3adbe9b611dc82769074c4872b61b202bc..cf914bd8180b115e95cd7750aca0eab766a5bd18 100644 (file)
@@ -178,7 +178,7 @@ static inline struct page * expand (zone_t *zone, struct page *page,
                area--;
                high--;
                size >>= 1;
-               list_add(&(page)->list, &(area)->free_list);
+               list_add(&page->list, &area->free_list);
                MARK_USED(index, high, area);
                index += size;
                page += size;