[libvirt] [PATCH] esx: Cleanup file header comments

Matthias Bolte matthias.bolte at googlemail.com
Mon Mar 22 00:55:05 UTC 2010


Replace 'method' with 'function' and get the filename's suffix right.
---
 src/esx/esx_device_monitor.c   |    2 +-
 src/esx/esx_driver.c           |    4 ++--
 src/esx/esx_driver.h           |    4 ++--
 src/esx/esx_interface_driver.c |    2 +-
 src/esx/esx_interface_driver.h |    2 +-
 src/esx/esx_network_driver.c   |    2 +-
 src/esx/esx_network_driver.h   |    2 +-
 src/esx/esx_private.h          |    2 +-
 src/esx/esx_secret_driver.c    |    2 +-
 src/esx/esx_secret_driver.h    |    2 +-
 src/esx/esx_storage_driver.c   |    2 +-
 src/esx/esx_util.c             |    2 +-
 src/esx/esx_util.h             |    2 +-
 src/esx/esx_vmx.c              |    2 +-
 src/esx/esx_vmx.h              |    2 +-
 15 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/src/esx/esx_device_monitor.c b/src/esx/esx_device_monitor.c
index 78de0e0..1962a11 100644
--- a/src/esx/esx_device_monitor.c
+++ b/src/esx/esx_device_monitor.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_device_monitor.c: device monitor methods for managing VMware ESX
+ * esx_device_monitor.c: device monitor functions for managing VMware ESX
  *                       host devices
  *
  * Copyright (C) 2010 Red Hat, Inc.
diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
index 20977b6..b97945d 100644
--- a/src/esx/esx_driver.c
+++ b/src/esx/esx_driver.c
@@ -1,9 +1,9 @@
 
 /*
- * esx_driver.c: core driver methods for managing VMware ESX hosts
+ * esx_driver.c: core driver functions for managing VMware ESX hosts
  *
  * Copyright (C) 2010 Red Hat, Inc.
- * Copyright (C) 2009, 2010 Matthias Bolte <matthias.bolte at googlemail.com>
+ * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte at googlemail.com>
  * Copyright (C) 2009 Maximilian Wilhelm <max at rfc2324.org>
  *
  * This library is free software; you can redistribute it and/or
diff --git a/src/esx/esx_driver.h b/src/esx/esx_driver.h
index bf382f4..7138aca 100644
--- a/src/esx/esx_driver.h
+++ b/src/esx/esx_driver.h
@@ -1,8 +1,8 @@
 
 /*
- * esx_driver.h: core driver methods for managing VMware ESX hosts
+ * esx_driver.h: core driver functions for managing VMware ESX hosts
  *
- * Copyright (C) 2009, 2010 Matthias Bolte <matthias.bolte at googlemail.com>
+ * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte at googlemail.com>
  * Copyright (C) 2009 Maximilian Wilhelm <max at rfc2324.org>
  *
  * This library is free software; you can redistribute it and/or
diff --git a/src/esx/esx_interface_driver.c b/src/esx/esx_interface_driver.c
index e3739f7..fef324d 100644
--- a/src/esx/esx_interface_driver.c
+++ b/src/esx/esx_interface_driver.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_interface_driver.h: interface driver methods for managing VMware ESX
+ * esx_interface_driver.c: interface driver functions for managing VMware ESX
  *                         host interfaces
  *
  * Copyright (C) 2010 Red Hat, Inc.
diff --git a/src/esx/esx_interface_driver.h b/src/esx/esx_interface_driver.h
index 998cbb9..ac04f79 100644
--- a/src/esx/esx_interface_driver.h
+++ b/src/esx/esx_interface_driver.h
@@ -1,6 +1,6 @@
 
 /*
- * esx_interface_driver.h: interface driver methods for managing VMware ESX
+ * esx_interface_driver.h: interface driver functions for managing VMware ESX
  *                         host interfaces
  *
  * Copyright (C) 2010 Matthias Bolte <matthias.bolte at googlemail.com>
diff --git a/src/esx/esx_network_driver.c b/src/esx/esx_network_driver.c
index dacc95b..49492d1 100644
--- a/src/esx/esx_network_driver.c
+++ b/src/esx/esx_network_driver.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_network_driver.c: network driver methods for managing VMware ESX
+ * esx_network_driver.c: network driver functions for managing VMware ESX
  *                       host networks
  *
  * Copyright (C) 2010 Red Hat, Inc.
diff --git a/src/esx/esx_network_driver.h b/src/esx/esx_network_driver.h
index fab5ac0..9f06d5a 100644
--- a/src/esx/esx_network_driver.h
+++ b/src/esx/esx_network_driver.h
@@ -1,6 +1,6 @@
 
 /*
- * esx_network_driver.h: network driver methods for managing VMware ESX
+ * esx_network_driver.h: network driver functions for managing VMware ESX
  *                       host networks
  *
  * Copyright (C) 2010 Matthias Bolte <matthias.bolte at googlemail.com>
diff --git a/src/esx/esx_private.h b/src/esx/esx_private.h
index df06129..f8aa9e8 100644
--- a/src/esx/esx_private.h
+++ b/src/esx/esx_private.h
@@ -2,7 +2,7 @@
 /*
  * esx_private.h: private driver struct for the VMware ESX driver
  *
- * Copyright (C) 2009, 2010 Matthias Bolte <matthias.bolte at googlemail.com>
+ * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte at googlemail.com>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
diff --git a/src/esx/esx_secret_driver.c b/src/esx/esx_secret_driver.c
index 07a178f..f8e030f 100644
--- a/src/esx/esx_secret_driver.c
+++ b/src/esx/esx_secret_driver.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_secret_driver.c: secret driver methods for VMware ESX secret manipulation
+ * esx_secret_driver.c: secret driver functions for VMware ESX secret manipulation
  *
  * Copyright (C) 2010 Red Hat, Inc.
  * Copyright (C) 2010 Matthias Bolte <matthias.bolte at googlemail.com>
diff --git a/src/esx/esx_secret_driver.h b/src/esx/esx_secret_driver.h
index d49f3cb..d9ee7eb 100644
--- a/src/esx/esx_secret_driver.h
+++ b/src/esx/esx_secret_driver.h
@@ -1,6 +1,6 @@
 
 /*
- * esx_secret_driver.h: secret driver methods for VMware ESX secret manipulation
+ * esx_secret_driver.h: secret driver functions for VMware ESX secret manipulation
  *
  * Copyright (C) 2010 Matthias Bolte <matthias.bolte at googlemail.com>
  *
diff --git a/src/esx/esx_storage_driver.c b/src/esx/esx_storage_driver.c
index 7b073a6..accd001 100644
--- a/src/esx/esx_storage_driver.c
+++ b/src/esx/esx_storage_driver.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_storage_driver.c: storage driver methods for managing VMware ESX
+ * esx_storage_driver.c: storage driver functions for managing VMware ESX
  *                       host storage
  *
  * Copyright (C) 2010 Red Hat, Inc.
diff --git a/src/esx/esx_util.c b/src/esx/esx_util.c
index 3cbd2b1..801b4b0 100644
--- a/src/esx/esx_util.c
+++ b/src/esx/esx_util.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_util.c: utility methods for the VMware ESX driver
+ * esx_util.c: utility functions for the VMware ESX driver
  *
  * Copyright (C) 2010 Red Hat, Inc.
  * Copyright (C) 2009 Matthias Bolte <matthias.bolte at googlemail.com>
diff --git a/src/esx/esx_util.h b/src/esx/esx_util.h
index f4f971c..5298184 100644
--- a/src/esx/esx_util.h
+++ b/src/esx/esx_util.h
@@ -1,6 +1,6 @@
 
 /*
- * esx_util.h: utility methods for the VMware ESX driver
+ * esx_util.h: utility functions for the VMware ESX driver
  *
  * Copyright (C) 2009 Matthias Bolte <matthias.bolte at googlemail.com>
  *
diff --git a/src/esx/esx_vmx.c b/src/esx/esx_vmx.c
index ba4c608..c6a92bf 100644
--- a/src/esx/esx_vmx.c
+++ b/src/esx/esx_vmx.c
@@ -1,6 +1,6 @@
 
 /*
- * esx_vmx.c: VMX related methods for the VMware ESX driver
+ * esx_vmx.c: VMX related functions for the VMware ESX driver
  *
  * Copyright (C) 2010 Red Hat, Inc.
  * Copyright (C) 2009 Matthias Bolte <matthias.bolte at googlemail.com>
diff --git a/src/esx/esx_vmx.h b/src/esx/esx_vmx.h
index bff3688..c07f8b3 100644
--- a/src/esx/esx_vmx.h
+++ b/src/esx/esx_vmx.h
@@ -1,6 +1,6 @@
 
 /*
- * esx_vmx.c: VMX related methods for the VMware ESX driver
+ * esx_vmx.h: VMX related functions for the VMware ESX driver
  *
  * Copyright (C) 2009 Matthias Bolte <matthias.bolte at googlemail.com>
  *
-- 
1.6.3.3




More information about the libvir-list mailing list