Lines Matching refs:mup
107 struct measurements_units_page mup;
172 memset (&mup, 0, sizeof (mup));
173 mup.page_code = MEASUREMENTS_PAGE;
174 mup.parameter_length = 0x06;
175 mup.bmu = INCHES;
176 mup.mud[0] = (DEFAULT_MUD >> 8) & 0xff;
177 mup.mud[1] = (DEFAULT_MUD & 0xff);
181 status = mode_select (fd, (struct mode_pages *) &mup);
192 memset (&mup, 0, sizeof (mup));
193 status = mode_sense (fd, (struct mode_pages *) &mup, PC_CURRENT | MEASUREMENTS_PAGE);
262 dev->info.bmu = mup.bmu;
263 dev->info.mud = _2btol(mup.mud);
799 struct measurements_units_page mup;
913 memset (&mup, 0, sizeof (mup));
914 mup.page_code = MEASUREMENTS_PAGE;
915 mup.parameter_length = 0x06;
916 mup.bmu = INCHES;
917 mup.mud[0] = (DEFAULT_MUD >> 8) & 0xff;
918 mup.mud[1] = (DEFAULT_MUD & 0xff);
920 status = mode_select (s->fd, (struct mode_pages *) &mup);