Commit e0192566 authored by James Bottomley's avatar James Bottomley

Fix aic merge error

parents fd32ac22 6abea0ef
# #
# Makefile for the Linux aic7xxx SCSI driver. # Makefile for the Linux aic7xxx SCSI driver.
# #
# $Id: //depot/linux-aic79xx-2.5.0/drivers/scsi/aic7xxx/Makefile#5 $ # $Id: //depot/linux-aic79xx-2.5.0/drivers/scsi/aic7xxx/Makefile#6 $
# #
# Let kbuild descend into aicasm when cleaning # Let kbuild descend into aicasm when cleaning
...@@ -33,7 +33,7 @@ aic79xx-y += aic79xx_osm.o \ ...@@ -33,7 +33,7 @@ aic79xx-y += aic79xx_osm.o \
aic79xx_proc.o \ aic79xx_proc.o \
aic79xx_osm_pci.o aic79xx_osm_pci.o
EXTRA_CFLAGS += -Idrivers/scsi EXTRA_CFLAGS += -Idrivers/scsi -Werror
#EXTRA_CFLAGS += -g #EXTRA_CFLAGS += -g
# Files generated that shall be removed upon make clean # Files generated that shall be removed upon make clean
......
/* /*
* Adaptec AIC79xx device driver for Linux. * Adaptec AIC79xx device driver for Linux.
* *
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.c#159 $ * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.c#160 $
* *
* -------------------------------------------------------------------------- * --------------------------------------------------------------------------
* Copyright (c) 1994-2000 Justin T. Gibbs. * Copyright (c) 1994-2000 Justin T. Gibbs.
...@@ -1406,7 +1406,7 @@ ahd_linux_abort(Scsi_Cmnd *cmd) ...@@ -1406,7 +1406,7 @@ ahd_linux_abort(Scsi_Cmnd *cmd)
} }
printf("%s: At time of recovery, card was %spaused\n", printf("%s: At time of recovery, card was %spaused\n",
was_paused ? "" : "not "); ahd_name(ahd), was_paused ? "" : "not ");
ahd_dump_card_state(ahd); ahd_dump_card_state(ahd);
disconnected = TRUE; disconnected = TRUE;
......
/* /*
* Adaptec AIC7xxx device driver for Linux. * Adaptec AIC7xxx device driver for Linux.
* *
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.c#220 $ * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.c#221 $
* *
* Copyright (c) 1994 John Aycock * Copyright (c) 1994 John Aycock
* The University of Calgary Department of Computer Science. * The University of Calgary Department of Computer Science.
...@@ -4877,7 +4877,7 @@ ahc_linux_queue_recovery_cmd(Scsi_Cmnd *cmd, scb_flag flag) ...@@ -4877,7 +4877,7 @@ ahc_linux_queue_recovery_cmd(Scsi_Cmnd *cmd, scb_flag flag)
} }
printf("%s: At time of recovery, card was %spaused\n", printf("%s: At time of recovery, card was %spaused\n",
was_paused ? "" : "not "); ahc_name(ahc), was_paused ? "" : "not ");
ahc_dump_card_state(ahc); ahc_dump_card_state(ahc);
disconnected = TRUE; disconnected = TRUE;
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES. * POSSIBILITY OF SUCH DAMAGES.
* *
* $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.h#140 $ * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.h#142 $
* *
*/ */
#ifndef _AIC7XXX_LINUX_H_ #ifndef _AIC7XXX_LINUX_H_
...@@ -746,7 +746,7 @@ static __inline void ...@@ -746,7 +746,7 @@ static __inline void
ahc_midlayer_entrypoint_unlock(struct ahc_softc *ahc, unsigned long *flags) ahc_midlayer_entrypoint_unlock(struct ahc_softc *ahc, unsigned long *flags)
{ {
#if AHC_SCSI_HAS_HOST_LOCK == 0 #if AHC_SCSI_HAS_HOST_LOCK == 0
spin_unlock(&ahd->platform_data->spin_lock); spin_unlock(&ahc->platform_data->spin_lock);
spin_lock(&io_request_lock); spin_lock(&io_request_lock);
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment