dect
/
linux-2.6
Archived
13
0
Fork 0

staging/fwserial: Remove superfluous free

Now that the dma fifo is allocated on activate and freed on
shutdown, this extra free is harmless but unnecessary.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Peter Hurley 2012-11-27 21:37:13 -05:00 committed by Greg Kroah-Hartman
parent 49b2746e14
commit 218cbbd821
1 changed files with 0 additions and 1 deletions

View File

@ -949,7 +949,6 @@ static void fwserial_destroy(struct kref *kref)
for (j = 0; j < num_ports; ++j) {
fw_core_remove_address_handler(&ports[j]->rx_handler);
dma_fifo_free(&ports[j]->tx_fifo);
tty_port_destroy(&ports[j]->port);
kfree(ports[j]);
}