From: Jeff Garzik Date: Sun, 27 May 2007 11:09:18 +0000 (-0400) Subject: firewire: fix return code X-Git-Tag: v2.6.22-rc4~97^2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=350958f984268dcf0f087aac78c5b9fe2846aeff;p=~emulex%2Finfiniband.git firewire: fix return code Fix this warning on x86-64 drivers/firewire/fw-cdev.c:798: warning: initialization from incompatible pointer type by making the return code of ioctl_send_request() the same as all the other ioctl_xxx() return codes. Signed-off-by: Jeff Garzik Signed-off-by: Stefan Richter --- diff --git a/drivers/firewire/fw-cdev.c b/drivers/firewire/fw-cdev.c index 0fa5bd54c6a..3ab3585d360 100644 --- a/drivers/firewire/fw-cdev.c +++ b/drivers/firewire/fw-cdev.c @@ -365,7 +365,7 @@ complete_transaction(struct fw_card *card, int rcode, response->response.data, response->response.length); } -static ssize_t ioctl_send_request(struct client *client, void *buffer) +static int ioctl_send_request(struct client *client, void *buffer) { struct fw_device *device = client->device; struct fw_cdev_send_request *request = buffer;