Module Name: src Committed By: skrll Date: Sun Oct 23 07:11:27 UTC 2022
Modified Files: src/sys/arch/aarch64/include: pmap.h Log Message: Line continuation alignment whitespace. NFC. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/sys/arch/aarch64/include/pmap.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/aarch64/include/pmap.h diff -u src/sys/arch/aarch64/include/pmap.h:1.53 src/sys/arch/aarch64/include/pmap.h:1.54 --- src/sys/arch/aarch64/include/pmap.h:1.53 Sat Oct 15 11:07:38 2022 +++ src/sys/arch/aarch64/include/pmap.h Sun Oct 23 07:11:26 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.53 2022/10/15 11:07:38 jmcneill Exp $ */ +/* $NetBSD: pmap.h,v 1.54 2022/10/23 07:11:26 skrll Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -315,13 +315,13 @@ paddr_t pmap_devmap_vtophys(paddr_t); #define DEVMAP_ALIGN(x) L3_TRUNC_BLOCK((x)) #define DEVMAP_SIZE(x) L3_ROUND_BLOCK((x)) -#define DEVMAP_ENTRY(va, pa, sz) \ - { \ - .pd_va = DEVMAP_ALIGN(va), \ - .pd_pa = DEVMAP_ALIGN(pa), \ +#define DEVMAP_ENTRY(va, pa, sz) \ + { \ + .pd_va = DEVMAP_ALIGN(va), \ + .pd_pa = DEVMAP_ALIGN(pa), \ .pd_size = DEVMAP_SIZE(sz), \ - .pd_prot = VM_PROT_READ|VM_PROT_WRITE, \ - .pd_flags = PMAP_DEV \ + .pd_prot = VM_PROT_READ|VM_PROT_WRITE, \ + .pd_flags = PMAP_DEV \ } #define DEVMAP_ENTRY_END { 0 }