From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Richard Wallman" Subject: Another error... Date: Wed, 25 Jun 2003 13:40:11 +0100 Sender: linux-8086-owner@vger.kernel.org Message-ID: <3EF9A63B.5480.98EAD78@localhost> Mime-Version: 1.0 Content-Transfer-Encoding: 7BIT Return-path: Content-description: Mail message body List-Id: Content-Type: text/plain; charset="us-ascii" To: linux-8086@vger.kernel.org Forgot to mention on the last one, these are from the tarballs off sourceforge (have given up on their CVS service for the moment) elks-0.1.1.1.tar.gz kernel/dma.c Line 97: } /* free_dma */ should be: } } /* free_dma */ (there's not enough closing braces for the free_dma function) Line 240: return (dmanr <= 3) ? count : (count << 1); should be: return (dma <= 3) ? count : (count << 1); -- Richard Wallman