diff options
author | Michal Nazarewicz <m.nazarewicz@samsung.com> | 2010-06-16 12:07:58 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-10 14:35:36 -0700 |
commit | 7898aee1dacbb246fee958f0a6102320b61768d9 (patch) | |
tree | 36243fdd64df23ab0112daf95a41c62efd5d5b39 /include/linux/usb/functionfs.h | |
parent | 1dc90985d1b29275607ddac59555199e7894f633 (diff) | |
download | blackbird-obmc-linux-7898aee1dacbb246fee958f0a6102320b61768d9.tar.gz blackbird-obmc-linux-7898aee1dacbb246fee958f0a6102320b61768d9.zip |
USB: gadget: f_fs: functionfs_add() renamed to functionfs_bind_config()
FunctionFS had a bit unique name for function used to add it
to USB configuration. Renamed as to match naming convention
of other functions.
Signed-off-by: Michal Nazarewicz <m.nazarewicz@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb/functionfs.h')
-rw-r--r-- | include/linux/usb/functionfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/usb/functionfs.h b/include/linux/usb/functionfs.h index a34a2a043b21..6f649c13193b 100644 --- a/include/linux/usb/functionfs.h +++ b/include/linux/usb/functionfs.h @@ -180,9 +180,9 @@ static int functionfs_bind(struct ffs_data *ffs, struct usb_composite_dev *cdev) static void functionfs_unbind(struct ffs_data *ffs) __attribute__((nonnull)); -static int functionfs_add(struct usb_composite_dev *cdev, - struct usb_configuration *c, - struct ffs_data *ffs) +static int functionfs_bind_config(struct usb_composite_dev *cdev, + struct usb_configuration *c, + struct ffs_data *ffs) __attribute__((warn_unused_result, nonnull)); |