mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-27 15:04:33 +00:00
Fix missing offset for /dev files
This commit is contained in:
parent
7d7fc4d018
commit
18d00a4bf3
@ -585,6 +585,7 @@ namespace Driver
|
|||||||
input->Node.Device = dev->Device;
|
input->Node.Device = dev->Device;
|
||||||
input->Node.Mode = mode;
|
input->Node.Mode = mode;
|
||||||
input->Node.Flags = I_FLAG_CACHE_KEEP;
|
input->Node.Flags = I_FLAG_CACHE_KEEP;
|
||||||
|
input->Node.Offset = _dev->Children.size();
|
||||||
_dev->Children.push_back(input);
|
_dev->Children.push_back(input);
|
||||||
devInputNode = fs->GetByPath("input", devNode);
|
devInputNode = fs->GetByPath("input", devNode);
|
||||||
|
|
||||||
@ -598,6 +599,7 @@ namespace Driver
|
|||||||
device->Node.Mode = mode;
|
device->Node.Mode = mode;
|
||||||
device->Node.SetDevice(maj, min);
|
device->Node.SetDevice(maj, min);
|
||||||
device->Node.Flags = I_FLAG_CACHE_KEEP;
|
device->Node.Flags = I_FLAG_CACHE_KEEP;
|
||||||
|
device->Node.Offset = p1->Children.size();
|
||||||
p1->Children.push_back(device);
|
p1->Children.push_back(device);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user