mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 13:27:06 +09:00
drivers: mfd: cpcap: Fix section mismatch warnings
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
committed by
Colin Cross
parent
42e58ebeab
commit
add4b3ab01
@@ -204,7 +204,7 @@ static void mac13_handler(enum cpcap_irqs irq, void *data)
|
||||
schedule_delayed_work(&data_3mm5->work, msecs_to_jiffies(200));
|
||||
}
|
||||
|
||||
static int __init cpcap_3mm5_probe(struct platform_device *pdev)
|
||||
static int cpcap_3mm5_probe(struct platform_device *pdev)
|
||||
{
|
||||
int retval = 0;
|
||||
struct cpcap_3mm5_data *data;
|
||||
|
||||
@@ -31,7 +31,7 @@ struct cpcap_key_data {
|
||||
struct cpcap_device *cpcap;
|
||||
};
|
||||
|
||||
static int __init cpcap_key_probe(struct platform_device *pdev)
|
||||
static int cpcap_key_probe(struct platform_device *pdev)
|
||||
{
|
||||
int err;
|
||||
struct cpcap_key_data *key;
|
||||
|
||||
@@ -476,7 +476,7 @@ int cpcap_accy_whisper(struct cpcap_device *cpcap, unsigned long cmd)
|
||||
return retval;
|
||||
}
|
||||
|
||||
static int __init cpcap_whisper_probe(struct platform_device *pdev)
|
||||
static int cpcap_whisper_probe(struct platform_device *pdev)
|
||||
{
|
||||
int retval;
|
||||
struct cpcap_whisper_data *data;
|
||||
|
||||
Reference in New Issue
Block a user