aboutsummaryrefslogtreecommitdiff
path: root/include/helpers.h
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2021-01-27 19:36:37 +1100
committerAlexey Kardashevskiy <aik@ozlabs.ru>2021-01-28 14:22:49 +1100
commitb2176a9ce6b397fd39d320eb1ceb9ef9dae6895d (patch)
tree91035b9985c34e2ceea8634424dbaf8662372b7f /include/helpers.h
parentb7ea243afd3917b9dfc58fda046138fba0aa9b1e (diff)
downloadSLOF-b2176a9ce6b397fd39d320eb1ceb9ef9dae6895d.zip
SLOF-b2176a9ce6b397fd39d320eb1ceb9ef9dae6895d.tar.gz
SLOF-b2176a9ce6b397fd39d320eb1ceb9ef9dae6895d.tar.bz2
helpers: Define MIN()
We already have MAX() defined, add MIN() to the common helpers header. Using the common helper also fixes a bug in tpmdrivers's MIN() where it was reverted. Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> --- Changes: v2: * updated the comment about a fixed bug
Diffstat (limited to 'include/helpers.h')
-rw-r--r--include/helpers.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/helpers.h b/include/helpers.h
index 112184f..898c02c 100644
--- a/include/helpers.h
+++ b/include/helpers.h
@@ -53,5 +53,6 @@ extern unsigned long SLOF_get_vtpm_unit(void);
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#define ROUNDUP(x,v) ((((x) + ((v) - 1)) / (v)) * (v))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
+#define MIN(x,y) ((x) < (y) ? (x) : (y))
#endif