Staging: imx-drm: Fix some lines over 80 characters
Signed-off-by: Antoine Schweitzer-Chaput <antoine@schweitzer-chaput.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
98dbeadaf0
commit
838201aa0f
@ -900,7 +900,8 @@ static void ipu_irq_handle(struct ipu_soc *ipu, const int *regs, int num_regs)
|
||||
status &= ipu_cm_read(ipu, IPU_INT_CTRL(regs[i]));
|
||||
|
||||
for_each_set_bit(bit, &status, 32) {
|
||||
irq = irq_linear_revmap(ipu->domain, regs[i] * 32 + bit);
|
||||
irq = irq_linear_revmap(ipu->domain,
|
||||
regs[i] * 32 + bit);
|
||||
if (irq)
|
||||
generic_handle_irq(irq);
|
||||
}
|
||||
@ -1053,7 +1054,8 @@ static int ipu_irq_init(struct ipu_soc *ipu)
|
||||
}
|
||||
|
||||
ret = irq_alloc_domain_generic_chips(ipu->domain, 32, 1, "IPU",
|
||||
handle_level_irq, 0, IRQF_VALID, 0);
|
||||
handle_level_irq, 0,
|
||||
IRQF_VALID, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(ipu->dev, "failed to alloc generic irq chips\n");
|
||||
irq_domain_remove(ipu->domain);
|
||||
|
@ -370,7 +370,8 @@ int ipu_dc_init(struct ipu_soc *ipu, struct device *dev,
|
||||
writel(DC_WR_CH_CONF_WORD_SIZE_24 | DC_WR_CH_CONF_DISP_ID_PARALLEL(0),
|
||||
priv->channels[5].base + DC_WR_CH_CONF);
|
||||
|
||||
writel(DC_GEN_SYNC_1_6_SYNC | DC_GEN_SYNC_PRIORITY_1, priv->dc_reg + DC_GEN);
|
||||
writel(DC_GEN_SYNC_1_6_SYNC | DC_GEN_SYNC_PRIORITY_1,
|
||||
priv->dc_reg + DC_GEN);
|
||||
|
||||
ipu->dc_priv = priv;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user