cputime: Clean up cputime_to_usecs and usecs_to_cputime macros
[platform/adaptation/renesas_rcar/renesas_kernel.git] / include / asm-generic / cputime.h
index 61e03dd..62ce682 100644 (file)
@@ -38,8 +38,8 @@ typedef u64 cputime64_t;
 /*
  * Convert cputime to microseconds and back.
  */
-#define cputime_to_usecs(__ct)         jiffies_to_usecs(__ct);
-#define usecs_to_cputime(__msecs)      usecs_to_jiffies(__msecs);
+#define cputime_to_usecs(__ct)         jiffies_to_usecs(__ct)
+#define usecs_to_cputime(__msecs)      usecs_to_jiffies(__msecs)
 
 /*
  * Convert cputime to seconds and back.