Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1526746 > unrolled thread
| Started by | Walt Feasel <waltfeasel@gmail.com> |
|---|---|
| First post | 2016-11-21 16:10 +0100 |
| Last post | 2016-11-21 16:10 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 5/5] staging: emxx_udc: emxx_udc.c Align parenthesis Walt Feasel <waltfeasel@gmail.com> - 2016-11-21 16:10 +0100
| From | Walt Feasel <waltfeasel@gmail.com> |
|---|---|
| Date | 2016-11-21 16:10 +0100 |
| Subject | [PATCH 5/5] staging: emxx_udc: emxx_udc.c Align parenthesis |
| Message-ID | <sFYoh-2MJ-7@gated-at.bofh.it> |
Make suggested checkpatch modification for
CHECK: Alignment should match open parenthesis
Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
---
drivers/staging/emxx_udc/emxx_udc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
index 65672b5..3f42fa8 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -3284,8 +3284,8 @@ static int nbu2ss_drv_remove(struct platform_device *pdev)
for (i = 0; i < NUM_ENDPOINTS; i++) {
ep = &udc->ep[i];
if (ep->virt_buf)
- dma_free_coherent(NULL, PAGE_SIZE,
- (void *)ep->virt_buf, ep->phys_buf);
+ dma_free_coherent(NULL, PAGE_SIZE, (void *)ep->virt_buf,
+ ep->phys_buf);
}
/* Interrupt Handler - Release */
--
2.1.4
Back to top | Article view | linux.kernel
csiph-web