mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
8e12a038f8
Commite520c41085
"xtensa: convert to asm-generic/hardirq.h" converted over to using the asm-generic parts, but it also added the sentinel #define ack_bad_irq ack_bad_irq which tells asm-generic to _not_ use the common ack_bad_irq. Sincee520c41
deleted the duplicated code from the arch specific file, we _do_ want the asm-generic one in scope. So delete the trigger define above which hides it. In doing so we'll realize that we've got to delete the almost-duplicate prototype as well to avoid "static declaration ... follows non-static". Cc: Christoph Hellwig <hch@lst.de> Cc: Chris Zankel <chris@zankel.net> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
17 lines
381 B
C
17 lines
381 B
C
/*
|
|
* include/asm-xtensa/hardirq.h
|
|
*
|
|
* 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.
|
|
*
|
|
* Copyright (C) 2002 - 2005 Tensilica Inc.
|
|
*/
|
|
|
|
#ifndef _XTENSA_HARDIRQ_H
|
|
#define _XTENSA_HARDIRQ_H
|
|
|
|
#include <asm-generic/hardirq.h>
|
|
|
|
#endif /* _XTENSA_HARDIRQ_H */
|