commit | f66bee41abe8288e5fd6aa6b61ff23c5f8a2c851 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Nov 01 14:15:43 2020 -0700 |
committer | Tom Rini <trini@konsulko.com> | Tue Dec 01 10:33:38 2020 -0500 |
tree | 5b4baf50efcea1d9666f139b181a5972c7fa23bb | |
parent | 8f4aa7ddb908369db971d4c31850ca1eef2e3687 [diff] |
setexpr: Convert to use a struct for values At present a ulong is used to hold operand values. This means that strings cannot be used. While most operations are not useful for strings, concatenation is. As a starting point to supporting strings, convert the code to use a struct instead of a ulong for operands. Signed-off-by: Simon Glass <sjg@chromium.org>