mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
scsi: ufs: core: Move ufshcd_enable_intr() and ufshcd_disable_intr()
Move ufshcd_enable_intr() and ufshcd_disable_intr() so they can be called in subsequent patches without forward declarations. No functional change. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/20250723165856.145750-5-adrian.hunter@intel.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
28a60bbbe7
commit
497027eade
|
|
@ -364,6 +364,32 @@ void ufshcd_disable_irq(struct ufs_hba *hba)
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(ufshcd_disable_irq);
|
||||
|
||||
/**
|
||||
* ufshcd_enable_intr - enable interrupts
|
||||
* @hba: per adapter instance
|
||||
* @intrs: interrupt bits
|
||||
*/
|
||||
static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
|
||||
{
|
||||
u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
|
||||
|
||||
set |= intrs;
|
||||
ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* ufshcd_disable_intr - disable interrupts
|
||||
* @hba: per adapter instance
|
||||
* @intrs: interrupt bits
|
||||
*/
|
||||
static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
|
||||
{
|
||||
u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
|
||||
|
||||
set &= ~intrs;
|
||||
ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
|
||||
}
|
||||
|
||||
static void ufshcd_configure_wb(struct ufs_hba *hba)
|
||||
{
|
||||
if (!ufshcd_is_wb_allowed(hba))
|
||||
|
|
@ -2681,32 +2707,6 @@ static int ufshcd_map_sg(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
|
|||
return ufshcd_crypto_fill_prdt(hba, lrbp);
|
||||
}
|
||||
|
||||
/**
|
||||
* ufshcd_enable_intr - enable interrupts
|
||||
* @hba: per adapter instance
|
||||
* @intrs: interrupt bits
|
||||
*/
|
||||
static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
|
||||
{
|
||||
u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
|
||||
|
||||
set |= intrs;
|
||||
ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* ufshcd_disable_intr - disable interrupts
|
||||
* @hba: per adapter instance
|
||||
* @intrs: interrupt bits
|
||||
*/
|
||||
static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
|
||||
{
|
||||
u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
|
||||
|
||||
set &= ~intrs;
|
||||
ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* ufshcd_prepare_req_desc_hdr - Fill UTP Transfer request descriptor header according to request
|
||||
* descriptor according to request
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user