2014-01-02 17:18:26

by Joe Borg

[permalink] [raw]
Subject: [PATCH] DAS1800: Fixed typeo.

Fixed foo * bar should be foo *bar.

Fixed by Joe Borg [email protected]
---
drivers/staging/comedi/drivers/das1800.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/comedi/drivers/das1800.c b/drivers/staging/comedi/drivers/das1800.c
index 1880038..8fb87df 100644
--- a/drivers/staging/comedi/drivers/das1800.c
+++ b/drivers/staging/comedi/drivers/das1800.c
@@ -462,7 +462,7 @@ static inline uint16_t munge_bipolar_sample(const struct comedi_device *dev,
return sample;
}

-static void munge_data(struct comedi_device *dev, uint16_t * array,
+static void munge_data(struct comedi_device *dev, uint16_t *array,
unsigned int num_elements)
{
unsigned int i;
--
1.8.5.2


2014-01-09 18:42:51

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] DAS1800: Fixed typeo.

On Thu, Jan 02, 2014 at 05:10:00PM +0000, Joe Borg wrote:
> Fixed foo * bar should be foo *bar.
>
> Fixed by Joe Borg [email protected]

That's not a "signed-off-by:" line, did you run this patch through
scripts/checkpatch.pl?

Also, your subject line has a typo :)

thanks,

greg k-h