mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 03:06:10 +00:00
SFI: remove __init from sfi_verify_table
sfi_verify_table() is called at runtime, and thus cannot be __init Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
01674da6f5
commit
011a606d06
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ static void sfi_print_table_header(unsigned long long pa,
|
||||||
* sfi_verify_table()
|
* sfi_verify_table()
|
||||||
* Sanity check table lengh, calculate checksum
|
* Sanity check table lengh, calculate checksum
|
||||||
*/
|
*/
|
||||||
static __init int sfi_verify_table(struct sfi_table_header *table)
|
static int sfi_verify_table(struct sfi_table_header *table)
|
||||||
{
|
{
|
||||||
|
|
||||||
u8 checksum = 0;
|
u8 checksum = 0;
|
||||||
|
|
Loading…
Reference in a new issue