Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: pm8001: fix spelling mistake, interupt -> interrupt

Rename the functions pm8001_chip_is_our_interupt,
pm80xx_chip_is_our_interupt and function pointer is_our_interrupt to fix
spelling mistakes.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Colin Ian King and committed by
Martin K. Petersen
f310a4ea 292c04cc

+7 -7
+2 -2
drivers/scsi/pm8001/pm8001_hwi.c
··· 4625 4625 return ret; 4626 4626 } 4627 4627 4628 - static u32 pm8001_chip_is_our_interupt(struct pm8001_hba_info *pm8001_ha) 4628 + static u32 pm8001_chip_is_our_interrupt(struct pm8001_hba_info *pm8001_ha) 4629 4629 { 4630 4630 #ifdef PM8001_USE_MSIX 4631 4631 return 1; ··· 5122 5122 .chip_rst = pm8001_hw_chip_rst, 5123 5123 .chip_iounmap = pm8001_chip_iounmap, 5124 5124 .isr = pm8001_chip_isr, 5125 - .is_our_interupt = pm8001_chip_is_our_interupt, 5125 + .is_our_interrupt = pm8001_chip_is_our_interrupt, 5126 5126 .isr_process_oq = process_oq, 5127 5127 .interrupt_enable = pm8001_chip_interrupt_enable, 5128 5128 .interrupt_disable = pm8001_chip_interrupt_disable,
+2 -2
drivers/scsi/pm8001/pm8001_init.c
··· 201 201 202 202 if (unlikely(!pm8001_ha)) 203 203 return IRQ_NONE; 204 - if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha)) 204 + if (!PM8001_CHIP_DISP->is_our_interrupt(pm8001_ha)) 205 205 return IRQ_NONE; 206 206 #ifdef PM8001_USE_TASKLET 207 207 tasklet_schedule(&pm8001_ha->tasklet[irq_vector->irq_id]); ··· 224 224 pm8001_ha = sha->lldd_ha; 225 225 if (unlikely(!pm8001_ha)) 226 226 return IRQ_NONE; 227 - if (!PM8001_CHIP_DISP->is_our_interupt(pm8001_ha)) 227 + if (!PM8001_CHIP_DISP->is_our_interrupt(pm8001_ha)) 228 228 return IRQ_NONE; 229 229 230 230 #ifdef PM8001_USE_TASKLET
+1 -1
drivers/scsi/pm8001/pm8001_sas.h
··· 197 197 int (*chip_ioremap)(struct pm8001_hba_info *pm8001_ha); 198 198 void (*chip_iounmap)(struct pm8001_hba_info *pm8001_ha); 199 199 irqreturn_t (*isr)(struct pm8001_hba_info *pm8001_ha, u8 vec); 200 - u32 (*is_our_interupt)(struct pm8001_hba_info *pm8001_ha); 200 + u32 (*is_our_interrupt)(struct pm8001_hba_info *pm8001_ha); 201 201 int (*isr_process_oq)(struct pm8001_hba_info *pm8001_ha, u8 vec); 202 202 void (*interrupt_enable)(struct pm8001_hba_info *pm8001_ha, u8 vec); 203 203 void (*interrupt_disable)(struct pm8001_hba_info *pm8001_ha, u8 vec);
+2 -2
drivers/scsi/pm8001/pm80xx_hwi.c
··· 4617 4617 return pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload, 0); 4618 4618 } 4619 4619 4620 - static u32 pm80xx_chip_is_our_interupt(struct pm8001_hba_info *pm8001_ha) 4620 + static u32 pm80xx_chip_is_our_interrupt(struct pm8001_hba_info *pm8001_ha) 4621 4621 { 4622 4622 #ifdef PM8001_USE_MSIX 4623 4623 return 1; ··· 4725 4725 .chip_rst = pm80xx_hw_chip_rst, 4726 4726 .chip_iounmap = pm8001_chip_iounmap, 4727 4727 .isr = pm80xx_chip_isr, 4728 - .is_our_interupt = pm80xx_chip_is_our_interupt, 4728 + .is_our_interrupt = pm80xx_chip_is_our_interrupt, 4729 4729 .isr_process_oq = process_oq, 4730 4730 .interrupt_enable = pm80xx_chip_interrupt_enable, 4731 4731 .interrupt_disable = pm80xx_chip_interrupt_disable,