Index: uspace/lib/drv/include/ieee80211_iface.h
===================================================================
--- uspace/lib/drv/include/ieee80211_iface.h	(revision 1dcc0b9aaf9f79f759ef62cc27bccd9e6b7c8d80)
+++ uspace/lib/drv/include/ieee80211_iface.h	(revision 3bd1b3ab5056db3b196fc9608179dfd2886d214b)
@@ -27,5 +27,5 @@
  */
 
- /** @addtogroup libc
+/** @addtogroup libc
  * @{
  */
@@ -39,6 +39,6 @@
 #include <async.h>
 
-extern int ieee80211_get_scan_results(async_sess_t *, 
-	ieee80211_scan_results_t *, bool);
+extern int ieee80211_get_scan_results(async_sess_t *,
+    ieee80211_scan_results_t *, bool);
 extern int ieee80211_connect(async_sess_t *, char *, char *);
 extern int ieee80211_disconnect(async_sess_t *);
Index: uspace/lib/drv/include/ops/ieee80211.h
===================================================================
--- uspace/lib/drv/include/ops/ieee80211.h	(revision 1dcc0b9aaf9f79f759ef62cc27bccd9e6b7c8d80)
+++ uspace/lib/drv/include/ops/ieee80211.h	(revision 3bd1b3ab5056db3b196fc9608179dfd2886d214b)
@@ -42,32 +42,32 @@
 /** IEEE 802.11 interface functions definition. */
 typedef struct ieee80211_iface {
-	/**
-	 * Fetch scan results from IEEE 802.11 device.
-	 * 
-	 * @param fun IEEE 802.11 function.
+	/** Fetch scan results from IEEE 802.11 device.
+	 *
+	 * @param fun     IEEE 802.11 function.
 	 * @param results Structure where to put scan results.
-	 * @param now Whether to initiate scan immediately.
-	 * 
+	 * @param now     Whether to initiate scan immediately.
+	 *
 	 * @return EOK if succeed, negative error code otherwise.
+	 *
 	 */
 	int (*get_scan_results)(ddf_fun_t *, ieee80211_scan_results_t *, bool);
 	
-	/** 
-	 * Connect IEEE 802.11 device to specified network.
+	/** Connect IEEE 802.11 device to specified network.
 	 *
-	 * @param fun IEEE 802.11 function.
-	 * @param ssid Network SSID.
+	 * @param fun      IEEE 802.11 function.
+	 * @param ssid     Network SSID.
 	 * @param password Network password (empty string if not needed).
-	 * 
+	 *
 	 * @return EOK if succeed, negative error code otherwise.
+	 *
 	 */
 	int (*connect)(ddf_fun_t *, char *, char *);
 	
-	/** 
-	 * Disconnect IEEE 802.11 device from network.
+	/** Disconnect IEEE 802.11 device from network.
 	 *
 	 * @param fun IEEE 802.11 function.
-	 * 
+	 *
 	 * @return EOK if succeed, negative error code otherwise.
+	 *
 	 */
 	int (*disconnect)(ddf_fun_t *);
