Lines Matching refs:tdp_table
316 struct phm_cac_tdp_table *tdp_table; in get_cac_tdp_table() local
320 tdp_table = kzalloc(table_size, GFP_KERNEL); in get_cac_tdp_table()
321 if (NULL == tdp_table) in get_cac_tdp_table()
324 tdp_table->usTDP = le16_to_cpu(table->usTDP); in get_cac_tdp_table()
325 tdp_table->usConfigurableTDP = le16_to_cpu(table->usConfigurableTDP); in get_cac_tdp_table()
326 tdp_table->usTDC = le16_to_cpu(table->usTDC); in get_cac_tdp_table()
327 tdp_table->usBatteryPowerLimit = le16_to_cpu(table->usBatteryPowerLimit); in get_cac_tdp_table()
328 tdp_table->usSmallPowerLimit = le16_to_cpu(table->usSmallPowerLimit); in get_cac_tdp_table()
329 tdp_table->usLowCACLeakage = le16_to_cpu(table->usLowCACLeakage); in get_cac_tdp_table()
330 tdp_table->usHighCACLeakage = le16_to_cpu(table->usHighCACLeakage); in get_cac_tdp_table()
331 tdp_table->usMaximumPowerDeliveryLimit = us_maximum_power_delivery_limit; in get_cac_tdp_table()
333 *ptable = tdp_table; in get_cac_tdp_table()