Home
last modified time | relevance | path

Searched refs:pot (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/staging/fbtft/
H A Dfb_uc1611.c43 static unsigned int pot = 16; variable
44 module_param(pot, uint, 0000);
45 MODULE_PARM_DESC(pot, "PM[6:0] Bias voltage pot.: 0-63 (default: 16)");
88 write_reg(par, (gain & 0x03) << 6 | (pot & 0x3F)); in init_display()
/linux/drivers/mtd/
H A Dnftlcore.c196 u16 pot = nftl->LastFreeEUN; in NFTL_findfreeblock() local
207 if (nftl->ReplUnitTable[pot] == BLOCK_FREE) { in NFTL_findfreeblock()
208 nftl->LastFreeEUN = pot; in NFTL_findfreeblock()
210 return pot; in NFTL_findfreeblock()
217 if (++pot > nftl->lastEUN) in NFTL_findfreeblock()
218 pot = le16_to_cpu(nftl->MediaHdr.FirstPhysicalEUN); in NFTL_findfreeblock()
226 } while (pot != nftl->LastFreeEUN); in NFTL_findfreeblock()
H A Dinftlcore.c200 u16 pot = inftl->LastFreeEUN; in INFTL_findfreeblock() local
218 if (inftl->PUtable[pot] == BLOCK_FREE) { in INFTL_findfreeblock()
219 inftl->LastFreeEUN = pot; in INFTL_findfreeblock()
220 return pot; in INFTL_findfreeblock()
223 if (++pot > inftl->lastEUN) in INFTL_findfreeblock()
224 pot = 0; in INFTL_findfreeblock()
231 } while (pot != inftl->LastFreeEUN); in INFTL_findfreeblock()
/linux/Documentation/input/devices/
H A Damijoy.rst189 These addresses each read a pair of 8 bit pot counters.
226 POTGO 034 W Paula Pot port (4 bit) bi-direction and data, and pot
239 that shares the same 4 pins as the 4 pot counters above.
/linux/tools/power/cpupower/
H A D.gitignore16 po/cpupowerutils.pot
/linux/drivers/gpu/drm/i915/selftests/
H A Di915_gem_gtt.c724 unsigned int pot; in pot_hole() local
744 for (pot = fls64(hole_end - 1) - 1; in pot_hole()
745 pot > ilog2(2 * min_alignment); in pot_hole()
746 pot--) { in pot_hole()
747 u64 step = BIT_ULL(pot); in pot_hole()
780 __func__, pot, fls64(hole_end - 1) - 1)) { in pot_hole()