Commit 2da11ba6 authored by William Hubbs's avatar William Hubbs Committed by Greg Kroah-Hartman
Browse files

staging: speakup: devsynth: remove custom locking macros

parent c2d7f743
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,9 +30,9 @@ static ssize_t speakup_file_write(struct file *fp, const char *buffer,
			return -EFAULT;
		count -= bytes;
		ptr += bytes;
		spk_lock(flags);
		spin_lock_irqsave(&speakup_info.spinlock, flags);
		synth_write(buf, bytes);
		spk_unlock(flags);
		spin_unlock_irqrestore(&speakup_info.spinlock, flags);
	}
	return (ssize_t) nbytes;
}