openocd: build: add SPDX tag
[fw/openocd] / src / flash / nand / s3c24xx.h
index 1535decdb4587f7da7f123e48413931c8ba72b2a..4b0c02fc4144513d349088b6c8940e520451930b 100644 (file)
  *   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.             *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
 
-#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 +29,7 @@
 #include "s3c24xx_regs.h"
 #include <target/target.h>
 
-struct s3c24xx_nand_controller
-{
+struct s3c24xx_nand_controller {
        /* register addresses */
        uint32_t                 cmd;
        uint32_t                 addr;
@@ -54,7 +51,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 +75,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 */