diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2023-01-14 12:59:18 +0900 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-01-18 12:27:21 +0100 |
commit | da994bac07b486b5c5dc50ee411ba0bcf9f95e1e (patch) | |
tree | 48113d6e8a361f19efe0c084382c0887c3265c1e | |
parent | db2237c459c3bdeb058ff66d7708a4a61ea8fa1c (diff) | |
download | qemu-da994bac07b486b5c5dc50ee411ba0bcf9f95e1e.zip qemu-da994bac07b486b5c5dc50ee411ba0bcf9f95e1e.tar.gz qemu-da994bac07b486b5c5dc50ee411ba0bcf9f95e1e.tar.bz2 |
tests/qtest/e1000e-test: Fix the code style
igb implementation first starts off by copying e1000e code. Correct the
code style before that.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230114035919.35251-19-akihiko.odaki@daynix.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/qtest/e1000e-test.c | 2 | ||||
-rw-r--r-- | tests/qtest/libqos/e1000e.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/tests/qtest/e1000e-test.c b/tests/qtest/e1000e-test.c index 3fc9204..b63a4d3 100644 --- a/tests/qtest/e1000e-test.c +++ b/tests/qtest/e1000e-test.c @@ -1,4 +1,4 @@ - /* +/* * QTest testcase for e1000e NIC * * Copyright (c) 2015 Ravello Systems LTD (http://ravellosystems.com) diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c index 37c794b..b90eb2d 100644 --- a/tests/qtest/libqos/e1000e.c +++ b/tests/qtest/libqos/e1000e.c @@ -222,8 +222,10 @@ static void e1000e_register_nodes(void) .device_id = E1000_DEV_ID_82574L, }; - /* FIXME: every test using this node needs to setup a -netdev socket,id=hs0 - * otherwise QEMU is not going to start */ + /* + * FIXME: every test using this node needs to setup a -netdev socket,id=hs0 + * otherwise QEMU is not going to start + */ QOSGraphEdgeOptions opts = { .extra_device_opts = "netdev=hs0", }; |