[SCSI] aic7xxx: remove the last vestiges of the runq

This was rendered obsolete by the busyq removal; remove some of the last
remnants of its presence.

Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

authored by James Bottomley and committed by James Bottomley 38c29ce0 013791ee

-7
-5
drivers/scsi/aic7xxx/aic7xxx_osm.c
··· 1332 return (ENOMEM); 1333 memset(ahc->platform_data, 0, sizeof(struct ahc_platform_data)); 1334 TAILQ_INIT(&ahc->platform_data->completeq); 1335 - TAILQ_INIT(&ahc->platform_data->device_runq); 1336 ahc->platform_data->irq = AHC_LINUX_NOIRQ; 1337 ahc_lockinit(ahc); 1338 init_timer(&ahc->platform_data->completeq_timer); ··· 2106 && dev->active == 0 2107 && (dev->flags & AHC_DEV_TIMER_ACTIVE) == 0) 2108 ahc_linux_free_device(ahc, dev); 2109 - else if ((dev->flags & AHC_DEV_ON_RUN_LIST) == 0) { 2110 - TAILQ_INSERT_TAIL(&ahc->platform_data->device_runq, dev, links); 2111 - dev->flags |= AHC_DEV_ON_RUN_LIST; 2112 - } 2113 2114 if ((scb->flags & SCB_RECOVERY_SCB) != 0) { 2115 printf("Recovery SCB completes\n");
··· 1332 return (ENOMEM); 1333 memset(ahc->platform_data, 0, sizeof(struct ahc_platform_data)); 1334 TAILQ_INIT(&ahc->platform_data->completeq); 1335 ahc->platform_data->irq = AHC_LINUX_NOIRQ; 1336 ahc_lockinit(ahc); 1337 init_timer(&ahc->platform_data->completeq_timer); ··· 2107 && dev->active == 0 2108 && (dev->flags & AHC_DEV_TIMER_ACTIVE) == 0) 2109 ahc_linux_free_device(ahc, dev); 2110 2111 if ((scb->flags & SCB_RECOVERY_SCB) != 0) { 2112 printf("Recovery SCB completes\n");
-2
drivers/scsi/aic7xxx/aic7xxx_osm.h
··· 325 AHC_DEV_UNCONFIGURED = 0x01, 326 AHC_DEV_FREEZE_TIL_EMPTY = 0x02, /* Freeze queue until active == 0 */ 327 AHC_DEV_TIMER_ACTIVE = 0x04, /* Our timer is active */ 328 - AHC_DEV_ON_RUN_LIST = 0x08, /* Queued to be run later */ 329 AHC_DEV_Q_BASIC = 0x10, /* Allow basic device queuing */ 330 AHC_DEV_Q_TAGGED = 0x20, /* Allow full SCSI2 command queueing */ 331 AHC_DEV_PERIODIC_OTAG = 0x40, /* Send OTAG to prevent starvation */ ··· 465 * Fields accessed from interrupt context. 466 */ 467 struct ahc_linux_target *targets[AHC_NUM_TARGETS]; 468 - TAILQ_HEAD(, ahc_linux_device) device_runq; 469 struct ahc_completeq completeq; 470 471 spinlock_t spin_lock;
··· 325 AHC_DEV_UNCONFIGURED = 0x01, 326 AHC_DEV_FREEZE_TIL_EMPTY = 0x02, /* Freeze queue until active == 0 */ 327 AHC_DEV_TIMER_ACTIVE = 0x04, /* Our timer is active */ 328 AHC_DEV_Q_BASIC = 0x10, /* Allow basic device queuing */ 329 AHC_DEV_Q_TAGGED = 0x20, /* Allow full SCSI2 command queueing */ 330 AHC_DEV_PERIODIC_OTAG = 0x40, /* Send OTAG to prevent starvation */ ··· 466 * Fields accessed from interrupt context. 467 */ 468 struct ahc_linux_target *targets[AHC_NUM_TARGETS]; 469 struct ahc_completeq completeq; 470 471 spinlock_t spin_lock;