Skip to content

Commit

Permalink
nascom: enable fdc ioctls
Browse files Browse the repository at this point in the history
  • Loading branch information
EtchedPixels committed Mar 8, 2024
1 parent aecf54b commit da2ba26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/platform/platform-nascom/devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct devsw dev_tab[] = /* The device driver switch table */
/* 0: /dev/hd SCSI/SASI block devices */
{td_open, no_close, td_read, td_write, td_ioctl},
/* 1: /dev/fd Floppy disc block devices */
{fdc80_open, no_close, fdc80_read, fdc80_write, no_ioctl},
{fdc80_open, no_close, fdc80_read, fdc80_write, fdc80_ioctl},
/* 2: /dev/tty TTY devices */
{tty_open, tty_close, tty_read, tty_write, vt_ioctl},
/* 3: /dev/lpr Printer devices */
Expand Down

0 comments on commit da2ba26

Please sign in to comment.