Revision c0ab424238ceabcaa3a2948f283bcb94f6979c93 authored by Tejun Heo on 18 November 2005, 05:22:03 UTC, committed by Jeff Garzik on 18 November 2005, 18:11:39 UTC
sil24_error_intr logs all error interrupts.  ATAPI devices generates
many harmless errors which can be ignored and all serious ones are
reported via sense data by SCSI layer.  Don't log device errors from
ATAPI devices.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
1 parent 69ad185
Raw File
bugs.h
/*
 *  linux/include/asm-arm/bugs.h
 *
 *  Copyright (C) 1995-2003 Russell King
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef __ASM_BUGS_H
#define __ASM_BUGS_H

extern void check_writebuffer_bugs(void);

#define check_bugs() check_writebuffer_bugs()

#endif
back to top