kdb: Rename members of struct kdbtab_t
[linux-2.6-block.git] / samples / kdb / kdb_hello.c
index 9ad514a6648b5c88f336936efc903699eeb5eff5..82736e5a5e32a60e0d2522406d6bbb2fe6b7aadb 100644 (file)
@@ -29,10 +29,10 @@ static int kdb_hello_cmd(int argc, const char **argv)
 }
 
 static kdbtab_t hello_cmd = {
-       .cmd_name = "hello",
-       .cmd_func = kdb_hello_cmd,
-       .cmd_usage = "[string]",
-       .cmd_help = "Say Hello World or Hello [string]",
+       .name = "hello",
+       .func = kdb_hello_cmd,
+       .usage = "[string]",
+       .help = "Say Hello World or Hello [string]",
 };
 
 static int __init kdb_hello_cmd_init(void)