summaryrefslogtreecommitdiffstats
path: root/src/sys/vfs/vfs_init.C
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2011-09-23 10:09:41 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2011-09-23 11:01:06 -0500
commitafa3bc7aa8ce1a128b6785907d3e96792b49a4ef (patch)
tree2b8c737659c3329d473fc4597b19971916cc38e3 /src/sys/vfs/vfs_init.C
parentb3e7a798672b8de6f85cd6ee6f002c8453ea5eb7 (diff)
downloadtalos-hostboot-afa3bc7aa8ce1a128b6785907d3e96792b49a4ef.tar.gz
talos-hostboot-afa3bc7aa8ce1a128b6785907d3e96792b49a4ef.zip
Fix printkd type error in vfs_init.
Change-Id: If18081efe0232b36ae92189323c3f999c9a14492 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/358 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/sys/vfs/vfs_init.C')
-rw-r--r--src/sys/vfs/vfs_init.C6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sys/vfs/vfs_init.C b/src/sys/vfs/vfs_init.C
index 4c02ba141..63ed5b08b 100644
--- a/src/sys/vfs/vfs_init.C
+++ b/src/sys/vfs/vfs_init.C
@@ -25,7 +25,7 @@
* @brief function definitions for funtions used to initialize modules
*/
#include <sys/vfs.h>
-#include <kernel/console.H>
+#include <kernel/console.H>
#include <limits.h>
#include <sys/mm.h>
@@ -41,7 +41,7 @@ int vfs_module_perms(VfsSystemModule* module)
uint64_t datasize = memsize - textsize;
- printkd("%s text=%lx:%lx data=%lx:%lx\n",
+ printkd("%s text=%p:%lx data=%p:%lx\n",
module->module,
module->text,
textsize,
@@ -105,7 +105,7 @@ VfsSystemModule * vfs_find_module(VfsSystemModule * i_table,
const char * i_name)
{
VfsSystemModule* module = i_table;
- VfsSystemModule* ret = NULL;
+ VfsSystemModule* ret = NULL;
while ('\0' != module->module[0])
{
if (0 == strcmp(i_name,module->module))
OpenPOWER on IntegriCloud