mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
TTY: Change the MasterPTY device major to not conflict with /dev/psaux
The 1st master pseudoterminal had the same device ID as /dev/psaux which was caught by an assertion in Device VFS registration. This would cause us to overwrite the PS/2 mouse device registration which was definitely not good.
This commit is contained in:
parent
dfd0daa157
commit
be459acaea
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
//#define SLAVEPTY_DEBUG
|
||||
|
||||
SlavePTY::SlavePTY(MasterPTY& master, unsigned index)
|
||||
: TTY(11, index)
|
||||
: TTY(101, index)
|
||||
, m_master(master)
|
||||
, m_index(index)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue