summaryrefslogtreecommitdiffstats
path: root/include/bouncebuf.h
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2012-11-06 11:27:28 +0000
committerAndy Fleming <afleming@freescale.com>2012-11-27 17:26:48 -0600
commit4ea7a09fafdf0592cb99428090946bf15128ea44 (patch)
treecf6626b79650d28c81d6ef0abf24a753bf9521d2 /include/bouncebuf.h
parent640fb607849c777e4dfcbbad6fe614ce5f4b7395 (diff)
downloadtalos-obmc-uboot-4ea7a09fafdf0592cb99428090946bf15128ea44.tar.gz
talos-obmc-uboot-4ea7a09fafdf0592cb99428090946bf15128ea44.zip
bouncebuf: remove dummy implementation
If any driver ever needs to use the bounce buffer API, it always needs to use it. As such, providing a dummy implementation of those APIs when CONFIG_BOUNCE_BUFFER isn't defined does not make sense. Remove the dummy implementation. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'include/bouncebuf.h')
-rw-r--r--include/bouncebuf.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/bouncebuf.h b/include/bouncebuf.h
index 31021c5b85..aa2278c8f9 100644
--- a/include/bouncebuf.h
+++ b/include/bouncebuf.h
@@ -51,7 +51,6 @@
*/
#define GEN_BB_RW (GEN_BB_READ | GEN_BB_WRITE)
-#ifdef CONFIG_BOUNCE_BUFFER
/**
* bounce_buffer_start() -- Start the bounce buffer session
* data: pointer to buffer to be aligned
@@ -70,18 +69,5 @@ int bounce_buffer_start(void **data, size_t len, void **backup, uint8_t flags);
* flags: flags describing the transaction, see above.
*/
int bounce_buffer_stop(void **data, size_t len, void **backup, uint8_t flags);
-#else
-static inline int bounce_buffer_start(void **data, size_t len, void **backup,
- uint8_t flags)
-{
- return 0;
-}
-
-static inline int bounce_buffer_stop(void **data, size_t len, void **backup,
- uint8_t flags)
-{
- return 0;
-}
-#endif
#endif
OpenPOWER on IntegriCloud