adxl.h 310 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Address translation interface via ACPI DSM.
  4. * Copyright (C) 2018 Intel Corporation
  5. */
  6. #ifndef _LINUX_ADXL_H
  7. #define _LINUX_ADXL_H
  8. const char * const *adxl_get_component_names(void);
  9. int adxl_decode(u64 addr, u64 component_values[]);
  10. #endif /* _LINUX_ADXL_H */