Lines Matching defs:uframe_periodic_max
66 * Display / Set uframe_periodic_max
76 n = scnprintf(buf, PAGE_SIZE, "%d\n", ehci->uframe_periodic_max);
86 unsigned uframe_periodic_max;
92 if (kstrtouint(buf, 0, &uframe_periodic_max) < 0)
95 if (uframe_periodic_max < 100 || uframe_periodic_max >= 125) {
97 "uframe_periodic_max=%u\n", uframe_periodic_max);
113 if (uframe_periodic_max < ehci->uframe_periodic_max) {
120 if (allocated_max > uframe_periodic_max) {
122 "cannot decrease uframe_periodic_max because "
125 allocated_max, uframe_periodic_max);
134 100*uframe_periodic_max/125, uframe_periodic_max);
136 if (uframe_periodic_max != 100)
139 ehci->uframe_periodic_max = uframe_periodic_max;
146 static DEVICE_ATTR_RW(uframe_periodic_max);