hh.org updates
[hh.org.git] / arch / arm / mach-pxa / h4000 / h4300_detect.c
blob6881ad2aaf7c3b79408f65d750a444dde79ab419
1 /*
2 * Use consistent with the GNU GPL is permitted,
3 * provided that this copyright notice is
4 * preserved in its entirety in all copies and derived works.
6 * Copyright (C) 2006 Paul Sokolosvky
7 * Based on code from h4300_kbd.c
9 */
11 #include <linux/module.h>
13 int h4000_machine_is_h4300(void);
15 int h4000_machine_is_h4300()
17 static int flag = -1;
19 if (flag != -1) return flag;
21 flag = 1;
23 return flag;
26 EXPORT_SYMBOL(h4000_machine_is_h4300);