|
From: oharboe at B. <oh...@ma...> - 2009-06-05 08:41:58
|
Author: oharboe
Date: 2009-06-05 08:41:54 +0200 (Fri, 05 Jun 2009)
New Revision: 2072
Modified:
trunk/src/flash/flash.c
trunk/src/flash/nand.c
trunk/src/helper/ioutil.c
trunk/src/target/trace.c
Log:
remove unused include file: inttypes.h
Modified: trunk/src/flash/flash.c
===================================================================
--- trunk/src/flash/flash.c 2009-06-05 06:37:21 UTC (rev 2071)
+++ trunk/src/flash/flash.c 2009-06-05 06:41:54 UTC (rev 2072)
@@ -31,8 +31,6 @@
#include "image.h"
#include "time_support.h"
-#include <inttypes.h>
-
/* command handlers */
static int handle_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
static int handle_flash_info_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
Modified: trunk/src/flash/nand.c
===================================================================
--- trunk/src/flash/nand.c 2009-06-05 06:37:21 UTC (rev 2071)
+++ trunk/src/flash/nand.c 2009-06-05 06:41:54 UTC (rev 2072)
@@ -28,9 +28,6 @@
#include "time_support.h"
#include "fileio.h"
-#include <inttypes.h>
-
-
static int handle_nand_list_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
static int handle_nand_probe_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
static int handle_nand_check_bad_blocks_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
Modified: trunk/src/helper/ioutil.c
===================================================================
--- trunk/src/helper/ioutil.c 2009-06-05 06:37:21 UTC (rev 2071)
+++ trunk/src/helper/ioutil.c 2009-06-05 06:41:54 UTC (rev 2072)
@@ -55,9 +55,6 @@
#include <malloc.h>
#endif
#endif
-//#ifdef HAVE_STRINGS_H
-//#include <strings.h>
-//#endif
int handle_rm_command(struct command_context_s *cmd_ctx, char *cmd,
Modified: trunk/src/target/trace.c
===================================================================
--- trunk/src/target/trace.c 2009-06-05 06:37:21 UTC (rev 2071)
+++ trunk/src/target/trace.c 2009-06-05 06:41:54 UTC (rev 2072)
@@ -25,8 +25,6 @@
#include "trace.h"
#include "target.h"
-#include <inttypes.h>
-
int trace_point(target_t *target, u32 number)
{
trace_t *trace = target->trace_info;
|