staging: vme_user: vme_tsi148.c: remove redundant newlines
Adhere to Linux kernel coding style. Reported by checkpatch: CHECK: Alignment should match open parenthesis Signed-off-by: Griffin Kroah-Hartman <griffin@kroah.com> Link: https://lore.kernel.org/r/20240715141102.142186-1-griffin@kroah.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8400291e28
commit
d43c918b6d
@ -1653,8 +1653,7 @@ static int tsi148_dma_list_add(struct vme_dma_list *list,
|
||||
case VME_DMA_PCI:
|
||||
pci_attr = src->private;
|
||||
|
||||
reg_split((unsigned long long)pci_attr->address, &address_high,
|
||||
&address_low);
|
||||
reg_split((unsigned long long)pci_attr->address, &address_high, &address_low);
|
||||
entry->descriptor.dsau = cpu_to_be32(address_high);
|
||||
entry->descriptor.dsal = cpu_to_be32(address_low);
|
||||
entry->descriptor.dsat = cpu_to_be32(TSI148_LCSR_DSAT_TYP_PCI);
|
||||
@ -1662,8 +1661,7 @@ static int tsi148_dma_list_add(struct vme_dma_list *list,
|
||||
case VME_DMA_VME:
|
||||
vme_attr = src->private;
|
||||
|
||||
reg_split((unsigned long long)vme_attr->address, &address_high,
|
||||
&address_low);
|
||||
reg_split((unsigned long long)vme_attr->address, &address_high, &address_low);
|
||||
entry->descriptor.dsau = cpu_to_be32(address_high);
|
||||
entry->descriptor.dsal = cpu_to_be32(address_low);
|
||||
entry->descriptor.dsat = cpu_to_be32(TSI148_LCSR_DSAT_TYP_VME);
|
||||
|
Loading…
Reference in New Issue
Block a user