From: J Keerthy Date: Mon, 1 Apr 2013 16:04:40 +0000 (-0400) Subject: staging: ti-soc-thermal: Introduce HAS_COUNTER_DELAY feature for bandgap X-Git-Tag: firefly_0821_release~3680^2~674^2~364 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3ff027f1b7fa36e9591d86700bbf91ef4fe96db8;p=firefly-linux-kernel-4.4.55.git staging: ti-soc-thermal: Introduce HAS_COUNTER_DELAY feature for bandgap Introduce HAS_COUNTER_DELAY feature for bandgap. Signed-off-by: J Keerthy Signed-off-by: Eduardo Valentin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ti-soc-thermal/ti-bandgap.h b/drivers/staging/ti-soc-thermal/ti-bandgap.h index 8f9bdb9501aa..8ee4857e5ff8 100644 --- a/drivers/staging/ti-soc-thermal/ti-bandgap.h +++ b/drivers/staging/ti-soc-thermal/ti-bandgap.h @@ -312,6 +312,9 @@ struct ti_temp_sensor { * TI_BANDGAP_FEATURE_FREEZE_BIT - used when the bandgap device features * a history buffer that its update can be freezed/unfreezed. * + * TI_BANDGAP_FEATURE_COUNTER_DELAY - used when the bandgap device features + * a delay programming based on distinct values. + * * TI_BANDGAP_HAS(b, f) - macro to check if a bandgap device is capable of a * specific feature (above) or not. Return non-zero, if yes. */ @@ -323,6 +326,7 @@ struct ti_temp_sensor { #define TI_BANDGAP_FEATURE_POWER_SWITCH BIT(5) #define TI_BANDGAP_FEATURE_CLK_CTRL BIT(6) #define TI_BANDGAP_FEATURE_FREEZE_BIT BIT(7) +#define TI_BANDGAP_FEATURE_COUNTER_DELAY BIT(8) #define TI_BANDGAP_HAS(b, f) \ ((b)->conf->features & TI_BANDGAP_FEATURE_ ## f)