diff options
| author | Andrew Morton <akpm@digeo.com> | 2002-09-29 02:20:30 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-09-29 02:20:30 -0700 |
| commit | 1f76929196ad4a0877d0b411deedb75767a3564e (patch) | |
| tree | 620aa0a12da3b1a5a9953cc1105e20a7a086897f /include/linux | |
| parent | 7c5bd68cf1cebff52df1c2cf676fb84ba899a86b (diff) | |
[PATCH] remove free_area_t typedef
typedef eradication.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/mmzone.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 580c39c4dcc1..0b14f37ca016 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -24,10 +24,10 @@ #define MAX_ORDER CONFIG_FORCE_MAX_ZONEORDER #endif -typedef struct free_area_struct { +struct free_area { struct list_head free_list; unsigned long *map; -} free_area_t; +}; struct pglist_data; @@ -78,7 +78,7 @@ struct zone { /* * free areas of different sizes */ - free_area_t free_area[MAX_ORDER]; + struct free_area free_area[MAX_ORDER]; /* * wait_table -- the array holding the hash table |
