hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
kernel/include/linux/units.h
....@@ -4,6 +4,22 @@
44
55 #include <linux/kernel.h>
66
7
+/* Metric prefixes in accordance with Système international (d'unités) */
8
+#define PETA 1000000000000000ULL
9
+#define TERA 1000000000000ULL
10
+#define GIGA 1000000000UL
11
+#define MEGA 1000000UL
12
+#define KILO 1000UL
13
+#define HECTO 100UL
14
+#define DECA 10UL
15
+#define DECI 10UL
16
+#define CENTI 100UL
17
+#define MILLI 1000UL
18
+#define MICRO 1000000UL
19
+#define NANO 1000000000UL
20
+#define PICO 1000000000000ULL
21
+#define FEMTO 1000000000000000ULL
22
+
723 #define MILLIWATT_PER_WATT 1000L
824 #define MICROWATT_PER_MILLIWATT 1000L
925 #define MICROWATT_PER_WATT 1000000L