diff options
author | Andres More <more.andres@gmail.com> | 2013-02-12 20:36:28 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-15 10:46:44 -0800 |
commit | dfdcc425975d06cbfcc9b5c0fad2f3af5476cd05 (patch) | |
tree | ed39806ba3b60cadae0e2eac7909e8afe6c1f458 /drivers/staging/vt6656/firmware.c | |
parent | b6592810e4d9493781c187e482ab0fd5cc97893f (diff) |
staging: vt6656: replace custom BOOL definition with bool
Checkpatch findings were not resolved, just make direct replacement
plus a couple of conflicting types in declarations.
sed -i 's/\bBOOL\b/bool/g' drivers/staging/vt6656/*.[ch]
Signed-off-by: Andres More <more.andres@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/firmware.c')
-rw-r--r-- | drivers/staging/vt6656/firmware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/firmware.c b/drivers/staging/vt6656/firmware.c index 93d7301bc294..c07cca709c0a 100644 --- a/drivers/staging/vt6656/firmware.c +++ b/drivers/staging/vt6656/firmware.c @@ -62,7 +62,7 @@ int FIRMWAREbDownload(struct vnt_private *pDevice) const struct firmware *fw; int NdisStatus; void *pBuffer = NULL; - BOOL result = FALSE; + bool result = FALSE; u16 wLength; int ii, rc; |