Home
last modified time | relevance | path

Searched refs:word_length (Results 1 – 5 of 5) sorted by relevance

/linux-2.6.39/drivers/staging/ft1000/ft1000-pcmcia/
Dft1000_dnld.c322 long word_length; in card_download() local
419 word_length = get_request_value(dev); in card_download()
420 if (word_length > MAX_LENGTH) { in card_download()
424 if ((word_length * 2 + (long)pUcFile) > in card_download()
443 for (; word_length > 0; word_length--) { /* In words */ in card_download()
460 if (word_length & 0x01) { in card_download()
461 word_length++; in card_download()
463 word_length = word_length / 2; in card_download()
465 for (; word_length > 0; word_length--) { /* In words */ in card_download()
548 word_length = get_request_value(dev); in card_download()
[all …]
/linux-2.6.39/drivers/staging/ft1000/ft1000-usb/
Dft1000_download.c502 …atic u32 write_blk (struct ft1000_device *ft1000dev, u16 **pUsFile, u8 **pUcFile, long word_length) in write_blk() argument
522 word_length--; in write_blk()
523 tempword = (u16)word_length; in write_blk()
524 word_length = (word_length / 16) + 1; in write_blk()
525 for (; word_length > 0; word_length--) /* In words */ in write_blk()
643 u8 **pUcFile, long word_length) in write_blk_fifo() argument
648 byte_length = word_length * 4; in write_blk_fifo()
667 *pUsFile = *pUsFile + (word_length << 1); in write_blk_fifo()
668 *pUcFile = *pUcFile + (word_length << 2); in write_blk_fifo()
693 long word_length; in scram_dnldr() local
[all …]
/linux-2.6.39/sound/soc/davinci/
Ddavinci-mcasp.c720 int word_length; in davinci_mcasp_hw_params() local
737 word_length = DAVINCI_AUDIO_WORD_8; in davinci_mcasp_hw_params()
742 word_length = DAVINCI_AUDIO_WORD_16; in davinci_mcasp_hw_params()
747 word_length = DAVINCI_AUDIO_WORD_32; in davinci_mcasp_hw_params()
761 davinci_config_channel_size(dev, word_length); in davinci_mcasp_hw_params()
/linux-2.6.39/arch/arm/plat-omap/
Dmcbsp.c1136 omap_mcbsp_word_length word_length; in omap_mcbsp_xmit_word() local
1144 word_length = mcbsp->tx_word_length; in omap_mcbsp_xmit_word()
1148 if (word_length > OMAP_MCBSP_WORD_16) in omap_mcbsp_xmit_word()
1158 omap_mcbsp_word_length word_length; in omap_mcbsp_recv_word() local
1166 word_length = mcbsp->rx_word_length; in omap_mcbsp_recv_word()
1170 if (word_length > OMAP_MCBSP_WORD_16) in omap_mcbsp_recv_word()
1473 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0)); in omap_mcbsp_set_spi_mode()
1474 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0)); in omap_mcbsp_set_spi_mode()
/linux-2.6.39/arch/arm/plat-omap/include/plat/
Dmcbsp.h385 omap_mcbsp_word_length word_length; member