[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 06/21] contrib: Add spaces around operator
From: |
Alex Bennée |
Subject: |
[PATCH v2 06/21] contrib: Add spaces around operator |
Date: |
Wed, 10 Feb 2021 22:10:38 +0000 |
From: zhouyang <zhouyang789@huawei.com>
I am reading contrib related code and found some style problems while
check the code using checkpatch.pl. This commit fixs the issue below:
ERROR: spaces required around that '*'
Signed-off-by: zhouyang <zhouyang789@huawei.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210118031004.1662363-4-zhouyang789@huawei.com>
---
contrib/ivshmem-server/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/ivshmem-server/main.c b/contrib/ivshmem-server/main.c
index ee08c4ced0..224dbeb547 100644
--- a/contrib/ivshmem-server/main.c
+++ b/contrib/ivshmem-server/main.c
@@ -17,7 +17,7 @@
#define IVSHMEM_SERVER_DEFAULT_PID_FILE "/var/run/ivshmem-server.pid"
#define IVSHMEM_SERVER_DEFAULT_UNIX_SOCK_PATH "/tmp/ivshmem_socket"
#define IVSHMEM_SERVER_DEFAULT_SHM_PATH "ivshmem"
-#define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4*1024*1024)
+#define IVSHMEM_SERVER_DEFAULT_SHM_SIZE (4 * 1024 * 1024)
#define IVSHMEM_SERVER_DEFAULT_N_VECTORS 1
/* used to quit on signal SIGTERM */
--
2.20.1
- [PATCH v2 00/21] plugins/next pre-PR (hwprofile, regression fixes, icount count fix), Alex Bennée, 2021/02/10
- [PATCH v2 01/21] hw/virtio/pci: include vdev name in registered PCI sections, Alex Bennée, 2021/02/10
- [PATCH v2 02/21] plugins: add API to return a name for a IO device, Alex Bennée, 2021/02/10
- [PATCH v2 04/21] contrib: Don't use '#' flag of printf format, Alex Bennée, 2021/02/10
- [PATCH v2 08/21] contrib: Open brace '{' following struct go on the same line, Alex Bennée, 2021/02/10
- [PATCH v2 05/21] contrib: Fix some code style problems, ERROR: "foo * bar" should be "foo *bar", Alex Bennée, 2021/02/10
- [PATCH v2 03/21] plugins: new hwprofile plugin, Alex Bennée, 2021/02/10
- [PATCH v2 06/21] contrib: Add spaces around operator,
Alex Bennée <=
- [PATCH v2 09/21] accel/tcg/plugin-gen: fix the call signature for inline callbacks, Alex Bennée, 2021/02/10
- [PATCH v2 12/21] target/mips: Create mips_io_recompile_replay_branch, Alex Bennée, 2021/02/10
- [PATCH v2 07/21] contrib: space required after that ',', Alex Bennée, 2021/02/10
- [PATCH v2 11/21] accel/tcg: Create io_recompile_replay_branch hook, Alex Bennée, 2021/02/10
- [PATCH v2 13/21] target/sh4: Create superh_io_recompile_replay_branch, Alex Bennée, 2021/02/10
- [PATCH v2 10/21] exec: Move TranslationBlock typedef to qemu/typedefs.h, Alex Bennée, 2021/02/10