Skip to content

Commit 29f2698

Browse files
Update comments
Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
1 parent a509690 commit 29f2698

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

common/include/villas/kernel/devices/device.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Interface for Linux/Unix device drivers
1+
/* Interface for Linux/Unix devices.
22
*
33
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
44
*

common/include/villas/kernel/devices/driver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Driver
1+
/* Interface for Linux/Unix device drivers
22
*
33
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
44
*

common/include/villas/kernel/devices/ip_device.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* IpDevice
1+
/* IpDevice: Linux/Unix device which represents an IP component of a fpga
22
*
33
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
44
*
@@ -22,7 +22,7 @@ class IpDevice : public PlatformDevice {
2222

2323
private:
2424
IpDevice() = delete;
25-
IpDevice(const std::filesystem::path valid_path)
25+
IpDevice(const std::filesystem::path valid_path) //! Dont allow unvalidated paths
2626
: PlatformDevice(valid_path){};
2727

2828
public:

common/include/villas/kernel/devices/platform_device.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Platform Device
1+
/* Platform Device: Platform bus based Linux/Unix device.
22
*
33
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
44
*

0 commit comments

Comments
 (0)