summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@ozlabs.org>2018-11-16 12:14:16 +1100
committerAlistair Popple <alistair@popple.id.au>2018-11-16 15:31:40 +1100
commit2dae719022d365da431431f167c86d8a0d9179d4 (patch)
tree5bd50d5b1af48fc12a33e2851d0ed2b30350099c
parent85709878693867053efa6310deb9d9a20813d0b6 (diff)
downloadpdbg-2dae719022d365da431431f167c86d8a0d9179d4.tar.gz
pdbg-2dae719022d365da431431f167c86d8a0d9179d4.zip
libpdbg: Convert printf to DEBUG statements
Signed-off-by: Amitay Isaacs <amitay@ozlabs.org> Reviewed-by: Alistair Popple <alistair@popple.id.au>
-rw-r--r--libpdbg/fake.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/libpdbg/fake.c b/libpdbg/fake.c
index 58e7e18..a816ff5 100644
--- a/libpdbg/fake.c
+++ b/libpdbg/fake.c
@@ -13,20 +13,22 @@
* see the license for the specific language governing permissions and
* limitations under the license.
*/
-#include "operations.h"
#include <stdio.h>
#include <inttypes.h>
+#include "libpdbg.h"
+#include "operations.h"
+
static int fake_fsi_read(struct fsi *fsi, uint32_t addr, uint32_t *value)
{
*value = 0xfeed0cfa;
- printf("fake_fsi_read(0x%04" PRIx32 ", 0x%04" PRIx32 ")\n", addr, *value);
+ PR_DEBUG("fake_fsi_read(0x%04" PRIx32 ", 0x%04" PRIx32 ")\n", addr, *value);
return 0;
}
static int fake_fsi_write(struct fsi *fsi, uint32_t addr, uint32_t value)
{
- printf("fake_fsi_write(0x%04" PRIx32 ", 0x%04" PRIx32 ")\n", addr, value);
+ PR_DEBUG("fake_fsi_write(0x%04" PRIx32 ", 0x%04" PRIx32 ")\n", addr, value);
return 0;
}
@@ -44,13 +46,13 @@ DECLARE_HW_UNIT(fake_fsi);
static int fake_pib_read(struct pib *pib, uint64_t addr, uint64_t *value)
{
*value = 0xdeadbeef;
- printf("fake_pib_read(0x%08" PRIx64 ", 0x%08" PRIx64 ")\n", addr, *value);
+ PR_DEBUG("fake_pib_read(0x%08" PRIx64 ", 0x%08" PRIx64 ")\n", addr, *value);
return 0;
}
static int fake_pib_write(struct pib *pib, uint64_t addr, uint64_t value)
{
- printf("fake_pib_write(0x%08" PRIx64 ", 0x%08" PRIx64 ")\n", addr, value);
+ PR_DEBUG("fake_pib_write(0x%08" PRIx64 ", 0x%08" PRIx64 ")\n", addr, value);
return 0;
}
OpenPOWER on IntegriCloud