summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block02
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-30 12:43:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-05-31 11:05:48 +0200
commit40284de8443df5e8f60420c11d2dcac09b6befb1 (patch)
tree0df3c57102c41b5dcf3b71144c73f4ef0b750e5f /testsuites/libtests/block02
parentlibblock: Add task stack size bdbuf configuration (diff)
downloadrtems-40284de8443df5e8f60420c11d2dcac09b6befb1.tar.bz2
libblock: Remove const qualifier from bdbuf API
This allows addtion of per disk statistics for example.
Diffstat (limited to 'testsuites/libtests/block02')
-rw-r--r--testsuites/libtests/block02/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/block02/init.c b/testsuites/libtests/block02/init.c
index 7c6c5d6d39..ed68830602 100644
--- a/testsuites/libtests/block02/init.c
+++ b/testsuites/libtests/block02/init.c
@@ -52,9 +52,9 @@ static rtems_task Init(rtems_task_argument argument);
#define BLOCK_COUNT_B 1
-static const rtems_disk_device *dd_a;
+static rtems_disk_device *dd_a;
-static const rtems_disk_device *dd_b;
+static rtems_disk_device *dd_b;
static volatile bool sync_done = false;