commit | 00547afe96dc6b2c106b09cffdf40b144e9eacaa | [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 | 7a11486c32a35d07d2631f14ba283e53bc01fa74 [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>