patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / input / misc / sparcspkr.c
index 6c5c08d..6d793ad 100644 (file)
@@ -53,11 +53,11 @@ static int ebus_spkr_event(struct input_dev *dev, unsigned int type, unsigned in
                case SND_BELL: if (value) value = 1000;
                case SND_TONE: break;
                default: return -1;
-       } 
+       }
 
        if (value > 20 && value < 32767)
                count = 1193182 / value;
-       
+
        spin_lock_irqsave(&beep_lock, flags);
 
        /* EBUS speaker only has on/off state, the frequency does not
@@ -108,11 +108,11 @@ static int isa_spkr_event(struct input_dev *dev, unsigned int type, unsigned int
                case SND_BELL: if (value) value = 1000;
                case SND_TONE: break;
                default: return -1;
-       } 
+       }
 
        if (value > 20 && value < 32767)
                count = 1193182 / value;
-       
+
        spin_lock_irqsave(&beep_lock, flags);
 
        if (count) {