1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Update comments

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-09-24 09:01:25 +02:00
parent 1f9e5c4713
commit ffbdcf54a0
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
/* Interface for Linux/Unix device drivers
/* Interface for Linux/Unix devices.
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*

View file

@ -1,4 +1,4 @@
/* Driver
/* Interface for Linux/Unix device drivers
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*

View file

@ -1,4 +1,4 @@
/* IpDevice
/* IpDevice: Linux/Unix device which represents an IP component of a fpga
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*
@ -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:

View file

@ -1,4 +1,4 @@
/* Platform Device
/* Platform Device: Platform bus based Linux/Unix device.
*
* Author: Pascal Bauer <pascal.bauer@rwth-aachen.de>
*