jtag/drivers: remove useless checks causing build failure with clang 3.5.0
authorPaul Fertser <fercerpav@gmail.com>
Mon, 19 Jan 2015 09:05:04 +0000 (12:05 +0300)
committerPaul Fertser <fercerpav@gmail.com>
Fri, 30 Jan 2015 09:02:20 +0000 (09:02 +0000)
Change-Id: Icafab6ac1e3e79c6da1bc163c30744eee4bde8d3
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/2482
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
src/jtag/drivers/ulink.c
src/jtag/drivers/usb_blaster/ublast2_access_libusb.c

index 8c2b9db122ac3c850e83ba9d2afd577a802022ce..cfd693a60ebbb3551854c4bfbe0d4ad64f781735 100644 (file)
@@ -461,9 +461,6 @@ int ulink_write_firmware_section(struct ulink *device,
        LOG_DEBUG("section %02i at addr 0x%04x (size 0x%04x)", section_index, addr,
                size);
 
-       if (data == NULL)
-               return ERROR_FAIL;
-
        /* Copy section contents to local buffer */
        ret = image_read_section(firmware_image, section_index, 0, size, data,
                        &size_read);
index 70dab20d58a3561108a33ece50bb597257c366eb..ac863918cb724e3f821ef8ea52b13629b4375216 100644 (file)
@@ -74,9 +74,6 @@ static int ublast2_write_firmware_section(struct jtag_libusb_device_handle *libu
        LOG_DEBUG("section %02i at addr 0x%04x (size 0x%04x)", section_index, addr,
                size);
 
-       if (data == NULL)
-               return ERROR_FAIL;
-
        /* Copy section contents to local buffer */
        int ret = image_read_section(firmware_image, section_index, 0, size, data,
                        &size_read);