From 66b3a75976191ae504956e89a34a455489544fd7 Mon Sep 17 00:00:00 2001 From: Alexander Curtin Date: Fri, 17 Mar 2017 11:26:52 -0400 Subject: [PATCH] staging: unisys: include: replaced COVERQ with DIV_ROUND_UP COVERQ is functionally equivalent to DIV_ROUND_UP and was only used to define the COVER macro. Signed-off-by: Alexander Curtin Signed-off-by: David Kershner Reviewed-by: Tim Sell Signed-off-by: Greg Kroah-Hartman --- drivers/staging/unisys/include/channel.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/staging/unisys/include/channel.h b/drivers/staging/unisys/include/channel.h index 1c95302f7f1b..802452908ff1 100644 --- a/drivers/staging/unisys/include/channel.h +++ b/drivers/staging/unisys/include/channel.h @@ -41,11 +41,8 @@ #ifndef lengthof #define lengthof(TYPE, MEMBER) (sizeof(((TYPE *)0)->MEMBER)) #endif -#ifndef COVERQ -#define COVERQ(v, d) (((v) + (d) - 1) / (d)) -#endif #ifndef COVER -#define COVER(v, d) ((d) * COVERQ(v, d)) +#define COVER(v, d) ((d) * DIV_ROUND_UP(v, d)) #endif #define ULTRA_CHANNEL_PROTOCOL_SIGNATURE SIGNATURE_32('E', 'C', 'N', 'L') -- 2.30.2