From: Kelley Nielsen Date: Sat, 12 Oct 2013 17:26:48 +0000 (-0700) Subject: staging: ft1000: remove space before address operator X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=610554d3ac98c75da20acbd79837510ed7435e11;p=deliverable%2Flinux.git staging: ft1000: remove space before address operator as per coding style (checkpatch error), space prohibited after that '&' Signed-off-by: Kelley Nielsen Reviewed-by: Josh Triplett Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c index 85c9ce175aef..d2cfafd6a8b4 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c @@ -1036,7 +1036,7 @@ u16 scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart, status = fix_ft1000_write_dpram32 (ft1000dev, dpram++, - (u8 *) & templong); + (u8 *) &templong); } break;