/**
  *     tty_read        -       read method for tty device files
- *     @file: pointer to tty file
- *     @buf: user buffer
- *     @count: size of user buffer
- *     @ppos: unused
+ *     @iocb: kernel I/O control block
+ *     @to: destination for the data read
  *
  *     Perform the read system call function on this terminal device. Checks
  *     for hung up devices before calling the line discipline method.
        }
 }
 
-
-/**
- *     tty_write               -       write method for tty device file
- *     @file: tty file pointer
- *     @buf: user data to write
- *     @count: bytes to write
- *     @ppos: unused
- *
- *     Write data to a tty device via the line discipline.
- *
- *     Locking:
- *             Locks the line discipline as required
- *             Writes to the tty driver are serialized by the atomic_write_lock
- *     and are then processed in chunks to the device. The line discipline
- *     write method will not be invoked in parallel for each device.
- */
-
 static ssize_t file_tty_write(struct file *file, struct kiocb *iocb, struct iov_iter *from)
 {
        struct tty_struct *tty = file_tty(file);
        return ret;
 }
 
+/**
+ *     tty_write               -       write method for tty device file
+ *     @iocb: kernel I/O control block
+ *     @from: iov_iter with data to write
+ *
+ *     Write data to a tty device via the line discipline.
+ *
+ *     Locking:
+ *             Locks the line discipline as required
+ *             Writes to the tty driver are serialized by the atomic_write_lock
+ *             and are then processed in chunks to the device. The line
+ *             discipline write method will not be invoked in parallel for
+ *             each device.
+ */
 static ssize_t tty_write(struct kiocb *iocb, struct iov_iter *from)
 {
        return file_tty_write(iocb->ki_filp, iocb, from);