pti: PTI semantics fix in pti_tty_cleanup.

This patch fixes a semantics issue in the pti_tty_cleanup()
routine.

Signed-off-by: J Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
J Freyensee 2011-05-25 14:56:43 -07:00 committed by Greg Kroah-Hartman
parent 1dae42bff5
commit 1312ba40c0
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ static void pti_tty_cleanup(struct tty_struct *tty)
if (pti_tty_data == NULL)
return;
pti_release_masterchannel(pti_tty_data->mc);
kfree(tty->driver_data);
kfree(pti_tty_data);
tty->driver_data = NULL;
}