]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/lguest/hypercalls.c
generalize lgread_u32/lgwrite_u32.
[linux-2.6-omap-h63xx.git] / drivers / lguest / hypercalls.c
index 3a53788ba450dc320e77b914f86b76577cacee6b..9d5184c7c14afc83652843f6d3cfe1534a3dcf7e 100644 (file)
@@ -47,7 +47,7 @@ static void do_hcall(struct lguest *lg, struct hcall_args *args)
                char msg[128];
                /* If the lgread fails, it will call kill_guest() itself; the
                 * kill_guest() with the message will be ignored. */
-               lgread(lg, msg, args->arg1, sizeof(msg));
+               __lgread(lg, msg, args->arg1, sizeof(msg));
                msg[sizeof(msg)-1] = '\0';
                kill_guest(lg, "CRASH: %s", msg);
                break;