genirq/proc: Avoid uninitalized variable warning

kernel/irq/proc.c: In function ‘show_irq_affinity’:
include/linux/cpumask.h:24:29: warning: ‘mask’ may be used uninitialized in this function [-Wmaybe-uninitialized]
#define cpumask_bits(maskp) ((maskp)->bits)

gcc is silly, but admittedly it can't know that this won't be called with
anything else than the enumerated constants.

Shut up the warning by creating a default clause.

Fixes: 6bc6d4abd22e ("genirq/proc: Use the the accessor to report the effective affinity
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

+2 -2
+2 -2
kernel/irq/proc.c
··· 63 63 #ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK 64 64 mask = irq_data_get_effective_affinity_mask(&desc->irq_data); 65 65 break; 66 - #else 67 - return -EINVAL; 68 66 #endif 67 + default: 68 + return -EINVAL; 69 69 } 70 70 71 71 switch (type) {