Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.6-rc2 20 lines 419 B view raw
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 13struct lpss_clk_data { 14 const char *name; 15 struct clk *clk; 16}; 17 18extern int lpt_clk_init(void); 19 20#endif /* __CLK_LPSS_H */