From debf320428e6407e4ae7a3880e85936463ff363f Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Tue, 24 Sep 2024 09:01:25 +0200 Subject: [PATCH] Update comments Signed-off-by: Pascal Bauer --- common/include/villas/kernel/devices/ip_device.hpp | 4 ++-- common/include/villas/kernel/devices/platform_device.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/include/villas/kernel/devices/ip_device.hpp b/common/include/villas/kernel/devices/ip_device.hpp index aba0d30c5..14aca5314 100644 --- a/common/include/villas/kernel/devices/ip_device.hpp +++ b/common/include/villas/kernel/devices/ip_device.hpp @@ -1,4 +1,4 @@ -/* Linux/Unix device which represents an IP component of a FPGA. +/* IpDevice: Linux/Unix device which represents an IP component of a fpga * * Author: Pascal Bauer * @@ -22,7 +22,7 @@ public: private: IpDevice() = delete; - IpDevice(const std::filesystem::path valid_path) + IpDevice(const std::filesystem::path valid_path) //! Dont allow unvalidated paths : PlatformDevice(valid_path){}; public: diff --git a/common/include/villas/kernel/devices/platform_device.hpp b/common/include/villas/kernel/devices/platform_device.hpp index a9be31c03..c6378eeb2 100644 --- a/common/include/villas/kernel/devices/platform_device.hpp +++ b/common/include/villas/kernel/devices/platform_device.hpp @@ -1,4 +1,4 @@ -/* Platform bus based Linux/Unix device. +/* Platform Device: Platform bus based Linux/Unix device. * * Author: Pascal Bauer *