Lines Matching refs:mup
111 struct measurements_units_page mup;
199 memset (&mup, 0, sizeof (mup));
200 mup.page_code = MEASUREMENTS_PAGE;
201 mup.parameter_length = 0x06;
202 mup.bmu = INCHES;
203 mup.mud[0] = (DEFAULT_MUD >> 8) & 0xff;
204 mup.mud[1] = (DEFAULT_MUD & 0xff);
208 status = mode_select (fd, (struct mode_pages *) &mup);
219 memset (&mup, 0, sizeof (mup));
220 status = mode_sense (fd, (struct mode_pages *) &mup, PC_CURRENT | MEASUREMENTS_PAGE);
297 dev->info.bmu = mup.bmu;
298 dev->info.mud = _2btol(mup.mud);
944 struct measurements_units_page mup;
1063 memset (&mup, 0, sizeof (mup));
1064 mup.page_code = MEASUREMENTS_PAGE;
1065 mup.parameter_length = 0x06;
1066 mup.bmu = INCHES;
1067 mup.mud[0] = (DEFAULT_MUD >> 8) & 0xff;
1068 mup.mud[1] = (DEFAULT_MUD & 0xff);
1070 mup.adf_page_code = 0x26;
1071 mup.adf_parameter_length = 6;
1073 mup.adf_control = 1;
1075 mup.adf_control = 0;
1078 status = mode_select (s->fd, (struct mode_pages *) &mup);