clk.h 597 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2012-2016 Zhang, Keguang <keguang.zhang@gmail.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or (at your
  7. * option) any later version.
  8. */
  9. #ifndef __LOONGSON1_CLK_H
  10. #define __LOONGSON1_CLK_H
  11. struct clk_hw *clk_hw_register_pll(struct device *dev,
  12. const char *name,
  13. const char *parent_name,
  14. const struct clk_ops *ops,
  15. unsigned long flags);
  16. #endif /* __LOONGSON1_CLK_H */