summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-11-23 09:47:16 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2012-11-26 13:41:01 -0600
commit339c2708e7a0d91e926c473314d563354a949c7f (patch)
tree5200ea1530b0e5f0ea6672684247f82aca0556f6
parent64b625f4b2fdb2c873e25c149648b2ce923faab7 (diff)
downloadfocaccia-qemu-339c2708e7a0d91e926c473314d563354a949c7f.tar.gz
focaccia-qemu-339c2708e7a0d91e926c473314d563354a949c7f.zip
qom: make object_finalize static
It is not used anymore, and there is no need to make it public.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r--include/qemu/object.h9
-rw-r--r--qom/object.c2
2 files changed, 1 insertions, 10 deletions
diff --git a/include/qemu/object.h b/include/qemu/object.h
index 5ddcb4aa5f..ed1f47f050 100644
--- a/include/qemu/object.h
+++ b/include/qemu/object.h
@@ -505,15 +505,6 @@ void object_initialize_with_type(void *data, Type type);
 void object_initialize(void *obj, const char *typename);
 
 /**
- * object_finalize:
- * @obj: The object to finalize.
- *
- * This function destroys and object without freeing the memory associated with
- * it.
- */
-void object_finalize(void *obj);
-
-/**
  * object_dynamic_cast:
  * @obj: The object to cast.
  * @typename: The @typename to cast to.
diff --git a/qom/object.c b/qom/object.c
index 3b50255450..0739aa2943 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -379,7 +379,7 @@ static void object_deinit(Object *obj, TypeImpl *type)
     }
 }
 
-void object_finalize(void *data)
+static void object_finalize(void *data)
 {
     Object *obj = data;
     TypeImpl *ti = obj->class->type;