diff options
| author | Ingo Molnar <mingo@elte.hu> | 2006-06-29 02:24:57 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 10:26:25 -0700 | 
| commit | f1c2662cbc6a0a9772655649bdf579803d33470b (patch) | |
| tree | ab6d0cc97527941e038edf0532f3917fca0953f8 /kernel/irq/proc.c | |
| parent | e76de9f8eb67b7acc1cc6f28c4be8583adf0a90c (diff) | |
| download | olio-linux-3.10-f1c2662cbc6a0a9772655649bdf579803d33470b.tar.xz olio-linux-3.10-f1c2662cbc6a0a9772655649bdf579803d33470b.zip  | |
[PATCH] genirq: cleanup: no_irq_type -> no_irq_chip rename
Rename no_irq_type to no_irq_chip.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/irq/proc.c')
| -rw-r--r-- | kernel/irq/proc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index f60b85b61e8..607c7809ad0 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c @@ -117,7 +117,7 @@ void register_irq_proc(unsigned int irq)  	char name [MAX_NAMELEN];  	if (!root_irq_dir || -		(irq_desc[irq].chip == &no_irq_type) || +		(irq_desc[irq].chip == &no_irq_chip) ||  			irq_desc[irq].dir)  		return;  |