mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-09 12:53:20 +00:00
Staging: ft1000: Fix assignment of bool to 0/1 in ft1000_dnld.c
This patch fixes the following warning in ft1000-pcmcia/ft1000_dnld.c- drivers/staging/ft1000/ft1000-pcmcia/ft1000_dnld.c:307:6-18: WARNING: Assignment of bool to 0/1 Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Lisa Nguyen <lisa@xenapiadmin.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9d8fe1f788
commit
93b2a6c847
@ -304,7 +304,7 @@ int card_download(struct net_device *dev, const u8 *pFileStart,
|
||||
struct dsp_file_hdr *pFileHdr5;
|
||||
struct dsp_image_info *pDspImageInfoV6 = NULL;
|
||||
long requested_version;
|
||||
bool bGoodVersion = 0;
|
||||
bool bGoodVersion = false;
|
||||
struct drv_msg *pMailBoxData;
|
||||
u16 *pUsData = NULL;
|
||||
u16 *pUsFile = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user