Lines Matching defs:format
49 /* basic and exended format: */
57 /* extended format only: */
67 * @CMF_EXTENDED: improved format that was introduced with the z990
69 * @CMF_AUTODETECT: default: use extended format when running on a machine
70 * supporting extended format, otherwise fall back to
71 * basic format
80 * format - actual format for all measurement blocks
82 * The format module parameter can be set to a value of 0 (zero)
83 * or 1, indicating basic or extended format as described for
86 static int format = CMF_AUTODETECT;
87 module_param(format, bint, 0444);
93 * one instance of struct cmb_operations because the format of the measurement
101 * @readall: read a measurement block in a common format
1273 if (format == CMF_AUTODETECT) {
1275 format = CMF_BASIC;
1277 format = CMF_EXTENDED;
1284 switch (format) {
1300 pr_info("Channel measurement facility initialized using format "