dtoc: Use items() to iterate over dictionaries in python 3.x
authorPaul Burton <paul.burton@imgtec.com>
Tue, 27 Sep 2016 15:03:56 +0000 (16:03 +0100)
committersjg <sjg@chromium.org>
Sun, 9 Oct 2016 15:30:32 +0000 (09:30 -0600)
commit4ae6549f8e1cd31076c6dbabef568689fc313a13
treeb71cc4593f137e4441b9a0c53df64dd1f44aae67
parentf5d44b9bae64d4fc347c537e6d5f13d630eb858d
dtoc: Use items() to iterate over dictionaries in python 3.x

In python 3.x the iteritems() method has been removed from dictionaries,
and the items() method does effectively the same thing. On python 2.x
using items() is a little less efficient since it involves copying data,
but as speed isn't a concern in the affected code switch to using
items() anyway for simplicity.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Acked-by: Simon Glass <sjg@chromium.org>
tools/dtoc/dtoc.py
tools/dtoc/fdt_fallback.py