Merge 'drm-3264' branch of rsync://rsync.kernel.org/pub/scm/linux/kernel/git/airlied...
[powerpc.git] / drivers / base / driver.c
index 34bd38a..1b64588 100644 (file)
@@ -31,8 +31,7 @@ static struct device * next_device(struct klist_iter * i)
  *     @data:  Data to pass to the callback.
  *     @fn:    Function to call for each device.
  *
- *     Take the bus's rwsem and iterate over the @drv's list of devices,
- *     calling @fn for each one.
+ *     Iterate over the @drv's list of devices calling @fn for each one.
  */
 
 int driver_for_each_device(struct device_driver * drv, struct device * start, 
@@ -53,7 +52,7 @@ int driver_for_each_device(struct device_driver * drv, struct device * start,
        return error;
 }
 
-EXPORT_SYMBOL(driver_for_each_device);
+EXPORT_SYMBOL_GPL(driver_for_each_device);
 
 
 /**