Lines Matching defs:bandwidth
693 * A MC driver can limit the scrubbing bandwidth based on the CPU type.
695 * bandwidth that is accepted or 0 when scrubbing is to be disabled.
705 unsigned long bandwidth = 0;
708 if (kstrtoul(data, 10, &bandwidth) < 0)
711 new_bw = mci->set_sdram_scrub_rate(mci, bandwidth);
714 "Error setting scrub rate to: %lu\n", bandwidth);
729 int bandwidth = 0;
731 bandwidth = mci->get_sdram_scrub_rate(mci);
732 if (bandwidth < 0) {
734 return bandwidth;
737 return sprintf(data, "%d\n", bandwidth);