mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
misc: Fix system_rev type mismatch
* Samsung sources have type mismatches in 3 of their drivers. This was uncovered using linaro's toolchain for kernel compilation. Change-Id: If3a083ffcb2a15185ff208b22976509ffd8af5e8 Signed-off-by: Kevin F. Haggerty <haggertk@lineageos.org>
This commit is contained in:
parent
3a9dd67510
commit
38f1006d11
3 changed files with 3 additions and 3 deletions
|
@ -1056,7 +1056,7 @@ void max77804k_muic_send_event(int val)
|
|||
kobject_uevent_env(&gInfo->dev->kobj, KOBJ_CHANGE, envp);
|
||||
}
|
||||
|
||||
extern int system_rev;
|
||||
extern unsigned int system_rev;
|
||||
|
||||
#if defined(CONFIG_MUIC_DET_JACK)
|
||||
static void max77804k_muic_earjack_detect_workfunc(struct work_struct *work)
|
||||
|
|
|
@ -557,7 +557,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
extern int system_rev;
|
||||
extern unsigned int system_rev;
|
||||
|
||||
struct synaptics_rmi4_f01_device_status {
|
||||
union {
|
||||
|
|
|
@ -110,7 +110,7 @@ struct sii8240_platform_data {
|
|||
bool is_smartdock;
|
||||
#endif
|
||||
};
|
||||
extern int system_rev;
|
||||
extern unsigned int system_rev;
|
||||
int acc_register_notifier(struct notifier_block *nb);
|
||||
#endif /* __SII8240_H__ */
|
||||
|
||||
|
|
Loading…
Reference in a new issue