clk-fch.h 287 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: MIT */
  2. /*
  3. * clock framework for AMD misc clocks
  4. *
  5. * Copyright 2018 Advanced Micro Devices, Inc.
  6. */
  7. #ifndef __CLK_FCH_H
  8. #define __CLK_FCH_H
  9. #include <linux/compiler.h>
  10. struct fch_clk_data {
  11. void __iomem *base;
  12. char *name;
  13. };
  14. #endif /* __CLK_FCH_H */