Browse Source

Add Coccinelle patch for detecing places where CEIL_DIV should be used.

Alexander Færøy 6 years ago
parent
commit
25eaf77033
1 changed files with 6 additions and 0 deletions
  1. 6 0
      scripts/coccinelle/ceil_div.cocci

+ 6 - 0
scripts/coccinelle/ceil_div.cocci

@@ -0,0 +1,6 @@
+@@
+expression n, d;
+@@
+
+- (((n) + (d) - 1) / (d))
++ CEIL_DIV(n, d)