diff options
author | Kelley Nielsen <kelleynnn@gmail.com> | 2013-10-12 10:26:48 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-14 09:23:23 -0700 |
commit | 610554d3ac98c75da20acbd79837510ed7435e11 (patch) | |
tree | 3880422145e84bdafb327ffa3c6eabe85f86b588 | |
parent | cfd9d1fad6bd0fe6679c3ffa455ca3c14651aecb (diff) | |
download | linux-610554d3ac98c75da20acbd79837510ed7435e11.tar.bz2 |
staging: ft1000: remove space before address operator
as per coding style (checkpatch error),
space prohibited after that '&'
Signed-off-by: Kelley Nielsen <kelleynnn@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ft1000/ft1000-usb/ft1000_download.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |