Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 011a606d authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Len Brown
Browse files

SFI: remove __init from sfi_verify_table



sfi_verify_table() is called at runtime, and thus cannot be __init

Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 01674da6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ static void sfi_print_table_header(unsigned long long pa,
 * sfi_verify_table()
 * 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;