aboutsummaryrefslogtreecommitdiff
path: root/hw/misc
diff options
context:
space:
mode:
authorKlaus Jensen <k.jensen@samsung.com>2023-08-23 10:14:41 +0200
committerThomas Huth <thuth@redhat.com>2023-10-12 14:11:44 +0200
commitf912f1bdb6b4237515e01a4ba646b2a7daefebed (patch)
tree337160d79807787e5b2bf807402454e7b8f58423 /hw/misc
parentd0353b6e7b3f9ba6132f0fa9b3605e4d4275af0c (diff)
downloadqemu-f912f1bdb6b4237515e01a4ba646b2a7daefebed.zip
qemu-f912f1bdb6b4237515e01a4ba646b2a7daefebed.tar.gz
qemu-f912f1bdb6b4237515e01a4ba646b2a7daefebed.tar.bz2
hw/misc/i2c-echo: add copyright/license note
Add missing copyright and license notice. Also add a short description of the device. Signed-off-by: Klaus Jensen <k.jensen@samsung.com> Message-ID: <20230823-i2c-echo-fixes-v1-1-ccc05a6028f0@samsung.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/misc')
-rw-r--r--hw/misc/i2c-echo.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/hw/misc/i2c-echo.c b/hw/misc/i2c-echo.c
index 5705ab5..5ae3d08 100644
--- a/hw/misc/i2c-echo.c
+++ b/hw/misc/i2c-echo.c
@@ -1,3 +1,13 @@
+/*
+ * Example I2C device using asynchronous I2C send.
+ *
+ * Copyright (C) 2023 Samsung Electronics Co., Ltd. All Rights Reserved.
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2. See
+ * the COPYING file in the top-level directory.
+ *
+ */
+
#include "qemu/osdep.h"
#include "qemu/timer.h"
#include "qemu/main-loop.h"