X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fnand%2Fs3c24xx.h;h=6b196a1ab529747d53dab158fa0c0eeb188c4073;hb=HEAD;hp=1535decdb4587f7da7f123e48413931c8ba72b2a;hpb=093ec6656ab7fb523b8a811f4bd628e3b50f8367;p=openocd.git diff --git a/src/flash/nand/s3c24xx.h b/src/flash/nand/s3c24xx.h index 1535decdb4..6b196a1ab5 100644 --- a/src/flash/nand/s3c24xx.h +++ b/src/flash/nand/s3c24xx.h @@ -1,25 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + /*************************************************************************** * Copyright (C) 2007, 2008 by Ben Dooks * * ben@fluff.org * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef S3C24xx_NAND_H -#define S3C24xx_NAND_H +#ifndef OPENOCD_FLASH_NAND_S3C24XX_H +#define OPENOCD_FLASH_NAND_S3C24XX_H /* * S3C24XX Series OpenOCD NAND Flash controller support. @@ -31,8 +18,7 @@ #include "s3c24xx_regs.h" #include -struct s3c24xx_nand_controller -{ +struct s3c24xx_nand_controller { /* register addresses */ uint32_t cmd; uint32_t addr; @@ -54,7 +40,7 @@ S3C24XX_DEVICE_COMMAND(); #define CALL_S3C24XX_DEVICE_COMMAND(d, i) \ do { \ int retval = CALL_COMMAND_HANDLER(s3c24xx_nand_device_command, d, i); \ - if (ERROR_OK != retval) \ + if (retval != ERROR_OK) \ return retval; \ } while (0) @@ -78,4 +64,4 @@ int s3c2440_read_block_data(struct nand_device *nand, int s3c2440_write_block_data(struct nand_device *nand, uint8_t *data, int data_size); -#endif // S3C24xx_NAND_H +#endif /* OPENOCD_FLASH_NAND_S3C24XX_H */