Skip to content

Commit

Permalink
api: remove un-needed ifdef CONFIG_API already handle by the Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
  • Loading branch information
plagnioj authored and wdenx committed May 15, 2009
1 parent 792a09e commit 84bf7ca
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 23 deletions.
5 changes: 0 additions & 5 deletions api/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
*/

#include <config.h>

#if defined(CONFIG_API)

#include <command.h>
#include <common.h>
#include <malloc.h>
Expand Down Expand Up @@ -665,5 +662,3 @@ void platform_set_mr(struct sys_info *si, unsigned long start, unsigned long siz
return;
}
}

#endif /* CONFIG_API */
5 changes: 0 additions & 5 deletions api/api_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
*/

#include <config.h>

#if defined(CONFIG_API)

#include <common.h>
#include <net.h>
#include <linux/types.h>
Expand Down Expand Up @@ -109,5 +106,3 @@ int dev_read_net(void *cookie, void *buf, int len)

return eth_receive(buf, len);
}

#endif /* CONFIG_API */
3 changes: 0 additions & 3 deletions api/api_platform-arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
*/

#include <config.h>

#if defined(CONFIG_API)

#include <linux/types.h>
#include <api_public.h>

Expand Down
5 changes: 0 additions & 5 deletions api/api_platform-ppc.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
*/

#include <config.h>

#if defined(CONFIG_API)

#include <linux/types.h>
#include <api_public.h>

Expand Down Expand Up @@ -75,5 +72,3 @@ int platform_sys_info(struct sys_info *si)

return 1;
}

#endif /* CONFIG_API */
5 changes: 0 additions & 5 deletions api/api_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
*/

#include <config.h>

#if defined(CONFIG_API)

#include <common.h>
#include <api_public.h>

Expand Down Expand Up @@ -391,5 +388,3 @@ lbasize_t dev_read_stor(void *cookie, void *buf, lbasize_t len, lbastart_t start

return (dd->block_read(dev_stor_index(dd), start, len, buf));
}

#endif /* CONFIG_API */

0 comments on commit 84bf7ca

Please sign in to comment.