Lines Matching full:pda
686 /* Read PDA from the adapter */
687 static int hermes_read_pda(struct hermes *hw, __le16 *pda, u32 pda_addr, in hermes_read_pda() argument
693 __le16 *data = pda; in hermes_read_pda()
696 /* PDA of spectrum symbol is in eeprom */ in hermes_read_pda()
703 /* wl_lkm does not include PDA size in the PDA area. in hermes_read_pda()
704 * We will pad the information into pda, so other routines in hermes_read_pda()
706 pda[0] = cpu_to_le16(pda_len - 2); in hermes_read_pda()
708 pda[1] = cpu_to_le16(0x0800); /* CFG_PROD_DATA */ in hermes_read_pda()
710 data = pda + 2; in hermes_read_pda()
719 /* Read PDA */ in hermes_read_pda()
727 /* Check PDA length */ in hermes_read_pda()
728 pda_size = le16_to_cpu(pda[0]); in hermes_read_pda()
729 pr_debug("Actual PDA length %d, Max allowed %d\n", in hermes_read_pda()