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:
ninez 2016-10-11 15:09:36 -04:00 committed by Francescodario Cuzzocrea
parent 3a9dd67510
commit 38f1006d11
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -557,7 +557,7 @@
#endif
extern int system_rev;
extern unsigned int system_rev;
struct synaptics_rmi4_f01_device_status {
union {

View File

@ -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__ */