aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-07 23:22:35 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-07 23:22:35 +0100
commit7951aaa23a4308e7c3b549c03d7546a3b3c06a9a (patch)
treece7adbe8118bbf707387ed55abfa3770f18c36d9 /tools
parent635fd50b51f2860400e934fbfa65e71481b8e3d6 (diff)
downloadxen-7951aaa23a4308e7c3b549c03d7546a3b3c06a9a.tar.gz
xen-7951aaa23a4308e7c3b549c03d7546a3b3c06a9a.tar.bz2
xen-7951aaa23a4308e7c3b549c03d7546a3b3c06a9a.zip
Some cleanup in TPM-related files and implementation of functionality that
got lost when switching to xenbus. Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/python/xen/xend/server/tpmif.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/python/xen/xend/server/tpmif.py b/tools/python/xen/xend/server/tpmif.py
index b5269a2cb0..d46bb698be 100644
--- a/tools/python/xen/xend/server/tpmif.py
+++ b/tools/python/xen/xend/server/tpmif.py
@@ -37,7 +37,7 @@ class TPMifController(DevController):
def getDeviceDetails(self, config):
"""@see DevController.getDeviceDetails"""
-
+
devid = int(sxp.child_value(config, 'instance', '0'))
log.info("The domain has a TPM with instance %d." % devid)
@@ -48,9 +48,7 @@ class TPMifController(DevController):
def configuration(self, devid):
- log.info("The configuration method is called.")
-
- result = DevContoller.configuration(self, devid)
+ result = DevController.configuration(self, devid)
(instance) = self.readBackend(devif,
'instance')