Index: uspace/lib/drv/include/ddf/driver.h
===================================================================
--- uspace/lib/drv/include/ddf/driver.h	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/drv/include/ddf/driver.h	(revision f1380b76772fb5d1aa03637b5e57bd9b929fea61)
@@ -57,5 +57,5 @@
 	 */
 	errno_t (*open)(ddf_fun_t *);
-	
+
 	/**
 	 * Optional callback function called when a client is disconnecting from
@@ -63,8 +63,8 @@
 	 */
 	void (*close)(ddf_fun_t *);
-	
+
 	/** The table of standard interfaces implemented by the device. */
 	void *interfaces[DEV_IFACE_COUNT];
-	
+
 	/**
 	 * The default handler of remote client requests. If the client's remote
@@ -89,14 +89,14 @@
 	/** Callback method for passing a new device to the device driver */
 	errno_t (*dev_add)(ddf_dev_t *);
-	
+
 	/** Ask driver to remove a device */
 	errno_t (*dev_remove)(ddf_dev_t *);
-	
+
 	/** Inform driver a device disappeared */
 	errno_t (*dev_gone)(ddf_dev_t *);
-	
+
 	/** Ask driver to online a specific function */
 	errno_t (*fun_online)(ddf_fun_t *);
-	
+
 	/** Ask driver to offline a specific function */
 	errno_t (*fun_offline)(ddf_fun_t *);
