Remove redundant sys/types.h #include directives (now in types.h).
[fw/openocd] / src / pld / pld.c
index a20f9d94430a210ab897b30da6d685c5541f7e9d..39571400a69fb602b1525bb6a8b5b1fd2a6029f6 100644 (file)
@@ -21,6 +21,8 @@
 #include "config.h"
 #endif
 
+#include "replacements.h"
+
 #include "pld.h"
 
 #include "jtag.h"
@@ -30,7 +32,6 @@
 
 #include <stdlib.h>
 #include <unistd.h>
-#include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <string.h>
@@ -93,7 +94,7 @@ int handle_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, char
                
        if (argc < 1)
        {
-               WARNING("incomplete 'pld bank' configuration");
+               LOG_WARNING("incomplete 'pld bank' configuration");
                return ERROR_OK;
        }
        
@@ -106,7 +107,7 @@ int handle_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, char
                        /* register pld specific commands */
                        if (pld_drivers[i]->register_commands(cmd_ctx) != ERROR_OK)
                        {
-                               ERROR("couldn't register '%s' commands", args[0]);
+                               LOG_ERROR("couldn't register '%s' commands", args[0]);
                                exit(-1);
                        }
                        
@@ -116,7 +117,7 @@ int handle_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, char
                        
                        if (pld_drivers[i]->pld_device_command(cmd_ctx, cmd, args, argc, c) != ERROR_OK)
                        {
-                               ERROR("'%s' driver rejected pld device", args[0]);
+                               LOG_ERROR("'%s' driver rejected pld device", args[0]);
                                free(c);
                                return ERROR_OK;
                        }
@@ -141,7 +142,7 @@ int handle_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, char
        /* no matching pld driver found */
        if (!found)
        {
-               ERROR("pld driver '%s' not found", args[0]);
+               LOG_ERROR("pld driver '%s' not found", args[0]);
                exit(-1);
        }