313c313
< c_dom.__getattr__('voltage_domain')
---
> v_dom = c_dom.__getattr__('voltage_domain')
332c332
< c_dom.__getattr__('voltage_domain')
---
> v_dom = c_dom.__getattr__('voltage_domain')
373,377c373,375
< dvfsgraph = pydot.Dot(graph_type='digraph', ranksep='1.3')
< dot_create_dvfs_nodes(root, dvfsgraph)
< dot_create_edges(root, dvfsgraph)
< dot_filename = os.path.join(outdir, dotFilename)
< dvfsgraph.write(dot_filename)
---
>
> # There is a chance that we are unable to resolve the clock or
> # voltage domains. If so, we fail silently.
378a377,386
> dvfsgraph = pydot.Dot(graph_type='digraph', ranksep='1.3')
> dot_create_dvfs_nodes(root, dvfsgraph)
> dot_create_edges(root, dvfsgraph)
> dot_filename = os.path.join(outdir, dotFilename)
> dvfsgraph.write(dot_filename)
> except:
> warn("Failed to generate dot graph for DVFS domains")
> return
>
> try: