missing patch version
On Wed, 19 Sep 2012 14:15:11 +0530
Vakul Garg [off-list ref] wrote:
CAAM era retrieval api caam_get_era() currently supports devices upto ERA-4.
The CAAM era is looked up from a table mapping SECVID register to an ERA number.
Post ERA-6, era can be directly read from register CCBVID. This patch enhances
api caam_get_era() to support additional pre ERA-6 devices in the mapping table.
For ERA-6 and later devices, it returns ERA directly by reading CCBVID.
wrap this text to ~75 cols please
+ if (ccb_vid->era)
+ return ccb_vid->era;
+ else
unnecessary else
Kim