Commit a45c657f authored by Linus Torvalds's avatar Linus Torvalds

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
parents 489f50be 9117710a
...@@ -12,10 +12,6 @@ ...@@ -12,10 +12,6 @@
#include <asm/tlb.h> #include <asm/tlb.h>
/* FIXME - when we get this compiling */
/* erm, now that it's compiling, what do we do with it? */
#define _KERNPG_TABLE 0
extern const char bad_pmd_string[]; extern const char bad_pmd_string[];
#define pmd_alloc_one(mm,address) ({ BUG(); ((pmd_t *)2); }) #define pmd_alloc_one(mm,address) ({ BUG(); ((pmd_t *)2); })
......
...@@ -46,13 +46,13 @@ struct zorro_manuf_info { ...@@ -46,13 +46,13 @@ struct zorro_manuf_info {
#include "devlist.h" #include "devlist.h"
static struct zorro_manuf_info __initdata zorro_manuf_list[] = { static struct zorro_manuf_info __initdata zorro_manuf_list[] = {
#define MANUF( manuf, name ) { 0x##manuf, sizeof(__prods_##manuf) / sizeof(struct zorro_prod_info), __manufstr_##manuf, __prods_##manuf }, #define MANUF( manuf, name ) { 0x##manuf, ARRAY_SIZE(__prods_##manuf), __manufstr_##manuf, __prods_##manuf },
#define ENDMANUF() #define ENDMANUF()
#define PRODUCT( manuf, prod, name ) #define PRODUCT( manuf, prod, name )
#include "devlist.h" #include "devlist.h"
}; };
#define MANUFS (sizeof(zorro_manuf_list)/sizeof(struct zorro_manuf_info)) #define MANUFS ARRAY_SIZE(zorro_manuf_list)
void __init zorro_name_device(struct zorro_dev *dev) void __init zorro_name_device(struct zorro_dev *dev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment