mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 23:29:10 -04:00
staging: ced1401: userspace: use1401.c: Cleaning up if statement that always evaluates to true
Unsigned variable can't be negative so it is unnecessary to test it. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eb5dd416fb
commit
b82f412bcf
@@ -1744,13 +1744,8 @@ U14API(short) U14GetString(short hand, char* pBuffer, unsigned short wMaxLen)
|
||||
&dwBytes, NULL);
|
||||
if (iOK) /* Device IO control OK ? */
|
||||
{
|
||||
if (dwBytes >= 0) /* If driver OK */
|
||||
{
|
||||
strcpy(pBuffer, tstr);
|
||||
sErr = U14ERR_NOERROR;
|
||||
}
|
||||
else
|
||||
sErr = U14ERR_DRIVCOMMS;
|
||||
strcpy(pBuffer, tstr);
|
||||
sErr = U14ERR_NOERROR;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user