aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorLuis Carlos Cobo Rus <luisca@cozybit.com>2007-05-25 16:26:47 -0400
committerJohn W. Linville <linville@tuxdriver.com>2007-06-11 14:28:42 -0400
commit0e37275e9af07be6aa796b3ee981054525980b74 (patch)
tree603f3b16545a041a5abf1d5e398d8f5c138b2ff2 /drivers/net/wireless
parenteb8f7330e7edf655176c51a62cd2e34de91a1eba (diff)
[PATCH] libertas: cleanup of fwt_list_route processing
Signed-off-by: Luis Carlos Cobo Rus <luisca@cozybit.com> Acked-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/libertas/ioctl.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/net/wireless/libertas/ioctl.c b/drivers/net/wireless/libertas/ioctl.c
index 5a5863239067..cfb4752b3bce 100644
--- a/drivers/net/wireless/libertas/ioctl.c
+++ b/drivers/net/wireless/libertas/ioctl.c
@@ -674,17 +674,7 @@ static int wlan_fwt_list_route_ioctl(wlan_private * priv, struct ifreq *req)
674 cmd_option_waitforrsp, 0, (void *)&fwt_access); 674 cmd_option_waitforrsp, 0, (void *)&fwt_access);
675 675
676 if (ret == 0) { 676 if (ret == 0) {
677 pbuf += sprintf(pbuf, " "); 677 print_route(fwt_access, pbuf);
678 pbuf += eth_addr2str(fwt_access.da, pbuf);
679 pbuf += sprintf(pbuf, " %u", le32_to_cpu(fwt_access.metric));
680 pbuf += sprintf(pbuf, " %u", fwt_access.dir);
681 /* note that the firmware returns the nid in the id field */
682 pbuf += sprintf(pbuf, " %u", le32_to_cpu(fwt_access.id));
683 pbuf += sprintf(pbuf, " %u", le32_to_cpu(fwt_access.ssn));
684 pbuf += sprintf(pbuf, " %u", le32_to_cpu(fwt_access.dsn));
685 pbuf += sprintf(pbuf, " hop %u", fwt_access.hopcount);
686 pbuf += sprintf(pbuf, " ttl %u", fwt_access.ttl);
687 pbuf += sprintf(pbuf, " %u", le32_to_cpu(fwt_access.expiration));
688 } else 678 } else
689 pbuf += sprintf(pbuf, " (null)"); 679 pbuf += sprintf(pbuf, " (null)");
690 680