mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
38
include/linux/acpi_pmtmr.h
Normal file
38
include/linux/acpi_pmtmr.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#ifndef _ACPI_PMTMR_H_
|
||||
#define _ACPI_PMTMR_H_
|
||||
|
||||
#include <linux/clocksource.h>
|
||||
|
||||
/* Number of PMTMR ticks expected during calibration run */
|
||||
#define PMTMR_TICKS_PER_SEC 3579545
|
||||
|
||||
/* limit it to 24 bits */
|
||||
#define ACPI_PM_MASK CLOCKSOURCE_MASK(24)
|
||||
|
||||
/* Overrun value */
|
||||
#define ACPI_PM_OVRRUN (1<<24)
|
||||
|
||||
#ifdef CONFIG_X86_PM_TIMER
|
||||
|
||||
extern u32 acpi_pm_read_verified(void);
|
||||
extern u32 pmtmr_ioport;
|
||||
|
||||
static inline u32 acpi_pm_read_early(void)
|
||||
{
|
||||
if (!pmtmr_ioport)
|
||||
return 0;
|
||||
/* mask the output to 24 bits */
|
||||
return acpi_pm_read_verified() & ACPI_PM_MASK;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
static inline u32 acpi_pm_read_early(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue