0a58458341
All the simple microblaze header files were adapted to use their asm-generic implementations. These files are more simple and were quite straightforward to change. fb.h, vga.h and parport.h previously did not exist, using the generic version makes it possible to build more drivers successfully in allyesonfig. Signed-off-by: Remis Lima Baima <remis.developer@googlemail.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Michal Simek <monstr@monstr.eu>
20 lines
547 B
C
20 lines
547 B
C
/*
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef _ASM_MICROBLAZE_HARDIRQ_H
|
|
#define _ASM_MICROBLAZE_HARDIRQ_H
|
|
|
|
/* should be defined in each interrupt controller driver */
|
|
extern unsigned int get_irq(struct pt_regs *regs);
|
|
|
|
#define ack_bad_irq ack_bad_irq
|
|
void ack_bad_irq(unsigned int irq);
|
|
#include <asm-generic/hardirq.h>
|
|
|
|
#endif /* _ASM_MICROBLAZE_HARDIRQ_H */
|