| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
|---|---|
| 2 | /* |
| 3 | * Intel Low Power Subsystem clocks. |
| 4 | * |
| 5 | * Copyright (C) 2013, Intel Corporation |
| 6 | * Authors: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 7 | * Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
| 8 | */ |
| 9 | |
| 10 | #ifndef __CLK_LPSS_H |
| 11 | #define __CLK_LPSS_H |
| 12 | |
| 13 | struct lpss_clk_data { |
| 14 | const char *name; |
| 15 | struct clk *clk; |
| 16 | }; |
| 17 | |
| 18 | int lpss_atom_clk_init(void); |
| 19 | |
| 20 | #endif /* __CLK_LPSS_H */ |
| 21 |
