diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-04 18:52:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-04 18:52:51 -0400 |
commit | a45c657f28f82b056173d1afc2e7ed1f1f68829f (patch) | |
tree | d973960f6b70a3ee60a5ee43892ecee2268e4c43 | |
parent | 489f50be56185fa3492690caedc099d507bf7c98 (diff) | |
parent | 9117710a5997eb078035052800a31b77d47e0e5a (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k changes from Geert Uytterhoeven:
"Extremely non-spectacular changes"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k:
m68k/sun3: Remove define statement no longer needed
zorro: Use ARRAY_SIZE
-rw-r--r-- | arch/m68k/include/asm/sun3_pgalloc.h | 4 | ||||
-rw-r--r-- | drivers/zorro/names.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/arch/m68k/include/asm/sun3_pgalloc.h b/arch/m68k/include/asm/sun3_pgalloc.h index f868506e3350..0931388de47f 100644 --- a/arch/m68k/include/asm/sun3_pgalloc.h +++ b/arch/m68k/include/asm/sun3_pgalloc.h | |||
@@ -12,10 +12,6 @@ | |||
12 | 12 | ||
13 | #include <asm/tlb.h> | 13 | #include <asm/tlb.h> |
14 | 14 | ||
15 | /* FIXME - when we get this compiling */ | ||
16 | /* erm, now that it's compiling, what do we do with it? */ | ||
17 | #define _KERNPG_TABLE 0 | ||
18 | |||
19 | extern const char bad_pmd_string[]; | 15 | extern const char bad_pmd_string[]; |
20 | 16 | ||
21 | #define pmd_alloc_one(mm,address) ({ BUG(); ((pmd_t *)2); }) | 17 | #define pmd_alloc_one(mm,address) ({ BUG(); ((pmd_t *)2); }) |
diff --git a/drivers/zorro/names.c b/drivers/zorro/names.c index 6f3fd9903ac3..83eedddbb794 100644 --- a/drivers/zorro/names.c +++ b/drivers/zorro/names.c | |||
@@ -46,13 +46,13 @@ struct zorro_manuf_info { | |||
46 | #include "devlist.h" | 46 | #include "devlist.h" |
47 | 47 | ||
48 | static struct zorro_manuf_info __initdata zorro_manuf_list[] = { | 48 | static struct zorro_manuf_info __initdata zorro_manuf_list[] = { |
49 | #define MANUF( manuf, name ) { 0x##manuf, sizeof(__prods_##manuf) / sizeof(struct zorro_prod_info), __manufstr_##manuf, __prods_##manuf }, | 49 | #define MANUF( manuf, name ) { 0x##manuf, ARRAY_SIZE(__prods_##manuf), __manufstr_##manuf, __prods_##manuf }, |
50 | #define ENDMANUF() | 50 | #define ENDMANUF() |
51 | #define PRODUCT( manuf, prod, name ) | 51 | #define PRODUCT( manuf, prod, name ) |
52 | #include "devlist.h" | 52 | #include "devlist.h" |
53 | }; | 53 | }; |
54 | 54 | ||
55 | #define MANUFS (sizeof(zorro_manuf_list)/sizeof(struct zorro_manuf_info)) | 55 | #define MANUFS ARRAY_SIZE(zorro_manuf_list) |
56 | 56 | ||
57 | void __init zorro_name_device(struct zorro_dev *dev) | 57 | void __init zorro_name_device(struct zorro_dev *dev) |
58 | { | 58 | { |