Commit 084e6c36 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by James Bottomley

advansys: rename 'ASC_RQ_XX' to 'ADV_RQ_XX'

These definitions are only ever used for the wide-scsi board,
so they should be prefixed with 'ADV', not 'ASC'.
Signed-off-by: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarJames Bottomley <JBottomley@Odin.com>
parent 96aabb2a
...@@ -1700,13 +1700,13 @@ typedef struct adv_carr_t { ...@@ -1700,13 +1700,13 @@ typedef struct adv_carr_t {
/* /*
* Mask used to eliminate low 4 bits of carrier 'next_vpa' field. * Mask used to eliminate low 4 bits of carrier 'next_vpa' field.
*/ */
#define ASC_NEXT_VPA_MASK 0xFFFFFFF0 #define ADV_NEXT_VPA_MASK 0xFFFFFFF0
#define ASC_RQ_DONE 0x00000001 #define ADV_RQ_DONE 0x00000001
#define ASC_RQ_GOOD 0x00000002 #define ADV_RQ_GOOD 0x00000002
#define ASC_CQ_STOPPER 0x00000000 #define ADV_CQ_STOPPER 0x00000000
#define ASC_GET_CARRP(carrp) ((carrp) & ASC_NEXT_VPA_MASK) #define ADV_GET_CARRP(carrp) ((carrp) & ADV_NEXT_VPA_MASK)
/* /*
* Each carrier is 64 bytes, and we need three additional * Each carrier is 64 bytes, and we need three additional
...@@ -4295,7 +4295,7 @@ static ADV_CARR_T *adv_get_next_carrier(struct adv_dvc_var *adv_dvc) ...@@ -4295,7 +4295,7 @@ static ADV_CARR_T *adv_get_next_carrier(struct adv_dvc_var *adv_dvc)
/* /*
* insert stopper carrier to terminate list * insert stopper carrier to terminate list
*/ */
carrp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER); carrp->next_vpa = cpu_to_le32(ADV_CQ_STOPPER);
return carrp; return carrp;
} }
...@@ -6198,7 +6198,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc) ...@@ -6198,7 +6198,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc)
* Check if the IRQ stopper carrier contains a completed request. * Check if the IRQ stopper carrier contains a completed request.
*/ */
while (((irq_next_vpa = while (((irq_next_vpa =
le32_to_cpu(asc_dvc->irq_sp->next_vpa)) & ASC_RQ_DONE) != 0) { le32_to_cpu(asc_dvc->irq_sp->next_vpa)) & ADV_RQ_DONE) != 0) {
/* /*
* Get a pointer to the newly completed ADV_SCSI_REQ_Q structure. * Get a pointer to the newly completed ADV_SCSI_REQ_Q structure.
* The RISC will have set 'areq_vpa' to a virtual address. * The RISC will have set 'areq_vpa' to a virtual address.
...@@ -6219,7 +6219,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc) ...@@ -6219,7 +6219,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc)
* DMAed to host memory by the firmware. Set all status fields * DMAed to host memory by the firmware. Set all status fields
* to indicate good status. * to indicate good status.
*/ */
if ((irq_next_vpa & ASC_RQ_GOOD) != 0) { if ((irq_next_vpa & ADV_RQ_GOOD) != 0) {
scsiq->done_status = QD_NO_ERROR; scsiq->done_status = QD_NO_ERROR;
scsiq->host_status = scsiq->scsi_status = 0; scsiq->host_status = scsiq->scsi_status = 0;
scsiq->data_cnt = 0L; scsiq->data_cnt = 0L;
...@@ -6232,7 +6232,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc) ...@@ -6232,7 +6232,7 @@ static int AdvISR(ADV_DVC_VAR *asc_dvc)
*/ */
free_carrp = asc_dvc->irq_sp; free_carrp = asc_dvc->irq_sp;
asc_dvc->irq_sp = adv_get_carrier(asc_dvc, asc_dvc->irq_sp = adv_get_carrier(asc_dvc,
ASC_GET_CARRP(irq_next_vpa)); ADV_GET_CARRP(irq_next_vpa));
free_carrp->next_vpa = asc_dvc->carr_freelist->carr_va; free_carrp->next_vpa = asc_dvc->carr_freelist->carr_va;
asc_dvc->carr_freelist = free_carrp; asc_dvc->carr_freelist = free_carrp;
......
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