From 6605341055d2878ebc53f4c69609b303521bf241 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Thu, 12 May 2011 08:56:05 +0200 Subject: [PATCH] Removed "Pd: 0" output that does the initial pagefault. Write to the memory instead, to get rid of the output. --- lib/master.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/master.c b/lib/master.c index 20b082f1..4bb11407 100644 --- a/lib/master.c +++ b/lib/master.c @@ -455,7 +455,7 @@ int ecrt_master_activate(ec_master_t *master) } // Access the mapped region to cause the initial page fault - printf("pd: %x\n", master->process_data[0]); + master->process_data[0] = 0x00; } return 0;