diff options
author | Denys Dmytriyenko <denys@ti.com> | 2018-07-10 07:06:01 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2018-07-10 18:39:09 +0000 |
commit | a5ecd90543b0842555662ea92e129d78e6f8c08b (patch) | |
tree | e78c524c27bd0922dbe64879c84fa2405dd6e30e /recipes-bsp/ipumm-fw | |
parent | f64a19d3e99027030decbf4ae9760f3a22a4e584 (diff) | |
download | meta-ti-a5ecd90543b0842555662ea92e129d78e6f8c08b.tar.gz |
meta-ti: cleanup use of d.getVar()
1. drop use of True as second parameter, which is default, to align with master
2. there were instances of incorrectly passing 'd' as second parameter from
previous conversion from bb.data.getVar() usage
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/ipumm-fw')
-rw-r--r-- | recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb index 761210e7..22a8c4f8 100644 --- a/recipes-bsp/ipumm-fw/ipumm-fw_git.bb +++ b/recipes-bsp/ipumm-fw/ipumm-fw_git.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | python __anonymous() { | 1 | python __anonymous() { |
2 | features = d.getVar("MACHINE_FEATURES", d, 1) | 2 | features = d.getVar("MACHINE_FEATURES") |
3 | if not features: | 3 | if not features: |
4 | return | 4 | return |
5 | if "mmip" not in features: | 5 | if "mmip" not in features: |