2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-02 09:55:55 +00:00
|
|
|
* arch/arm/include/asm/bugs.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1995-2003 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_BUGS_H
|
|
|
|
#define __ASM_BUGS_H
|
|
|
|
|
|
|
|
extern void check_writebuffer_bugs(void);
|
|
|
|
|
2018-05-10 11:55:58 +00:00
|
|
|
#ifdef CONFIG_MMU
|
|
|
|
extern void check_bugs(void);
|
2018-05-10 12:00:43 +00:00
|
|
|
extern void check_other_bugs(void);
|
2006-06-20 19:46:52 +00:00
|
|
|
#else
|
|
|
|
#define check_bugs() do { } while (0)
|
2018-05-10 12:00:43 +00:00
|
|
|
#define check_other_bugs() do { } while (0)
|
2006-06-20 19:46:52 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|