Commit 51c75fd0 authored by Alex Elder's avatar Alex Elder Committed by Greg Kroah-Hartman

greybus: reorder greybus_svc_in() arguments

The two functions greybus_svc_in() and greybus_cport_in() do
very similar things, but their arguments are in a different order.
Move the greybus_host_device structure argument for greybus_svc_in()
to be first so the functions' prototypes are better aligned.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 01e82801
...@@ -294,7 +294,7 @@ static void ap_process_event(struct work_struct *work) ...@@ -294,7 +294,7 @@ static void ap_process_event(struct work_struct *work)
kfree(ap_msg); kfree(ap_msg);
} }
int greybus_svc_in(u8 *data, int size, struct greybus_host_device *hd) int greybus_svc_in(struct greybus_host_device *hd, u8 *data, int size)
{ {
struct ap_msg *ap_msg; struct ap_msg *ap_msg;
......
...@@ -268,7 +268,7 @@ static void svc_in_callback(struct urb *urb) ...@@ -268,7 +268,7 @@ static void svc_in_callback(struct urb *urb)
/* We have a message, create a new message structure, add it to the /* We have a message, create a new message structure, add it to the
* list, and wake up our thread that will process the messages. * list, and wake up our thread that will process the messages.
*/ */
greybus_svc_in(urb->transfer_buffer, urb->actual_length, es1->hd); greybus_svc_in(es1->hd, urb->transfer_buffer, urb->actual_length);
exit: exit:
/* resubmit the urb to get more messages */ /* resubmit the urb to get more messages */
......
...@@ -289,7 +289,7 @@ void gb_add_module(struct greybus_host_device *hd, u8 module_id, ...@@ -289,7 +289,7 @@ void gb_add_module(struct greybus_host_device *hd, u8 module_id,
u8 *data, int size); u8 *data, int size);
void gb_remove_module(struct greybus_host_device *hd, u8 module_id); void gb_remove_module(struct greybus_host_device *hd, u8 module_id);
int greybus_svc_in(u8 *data, int length, struct greybus_host_device *hd); int greybus_svc_in(struct greybus_host_device *hd, u8 *data, int length);
int gb_ap_init(void); int gb_ap_init(void);
void gb_ap_exit(void); void gb_ap_exit(void);
int gb_debugfs_init(void); int gb_debugfs_init(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment