Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/dcdbas: move EXPORT_SYMBOL after function

The declaration
EXPORT_SYMBOL(dcdbas_smi_request);
was placed after smi_request_store(), which made a false impression that
dcdbas_smi_request() was not exported.

Signed-off-by: Mateusz Jończyk <mat.jonczyk@o2.pl>
Cc: Stuart Hayes <stuart.w.hayes@gmail.com>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Mark Gross <markgross@kernel.org>
Link: https://lore.kernel.org/r/20220212125908.357588-1-mat.jonczyk@o2.pl
Signed-off-by: Hans de Goede <hdegoede@redhat.com>

authored by

Mateusz Jończyk and committed by
Hans de Goede
42f8bcb3 3d7d407d

+1 -1
+1 -1
drivers/platform/x86/dell/dcdbas.c
··· 284 284 285 285 return ret; 286 286 } 287 + EXPORT_SYMBOL(dcdbas_smi_request); 287 288 288 289 /** 289 290 * smi_request_store: ··· 352 351 mutex_unlock(&smi_data_lock); 353 352 return ret; 354 353 } 355 - EXPORT_SYMBOL(dcdbas_smi_request); 356 354 357 355 /** 358 356 * host_control_smi: generate host control SMI