cregit-Linux how code gets into the kernel

Release 4.16 drivers/clk/at91/pmc.h

Directory: drivers/clk/at91
/*
 * drivers/clk/at91/pmc.h
 *
 *  Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#ifndef __PMC_H_

#define __PMC_H_

#include <linux/io.h>
#include <linux/irqdomain.h>
#include <linux/regmap.h>
#include <linux/spinlock.h>

extern spinlock_t pmc_pcr_lock;


struct clk_range {
	
unsigned long min;
	
unsigned long max;
};


#define CLK_RANGE(MIN, MAX) {.min = MIN, .max = MAX,}

int of_at91_get_clk_range(struct device_node *np, const char *propname,
			  struct clk_range *range);

#ifdef CONFIG_PM
void pmc_register_id(u8 id);
void pmc_register_pck(u8 pck);
#else

static inline void pmc_register_id(u8 id) {}

Contributors

PersonTokensPropCommitsCommitProp
Alexandre Belloni9100.00%1100.00%
Total9100.00%1100.00%


static inline void pmc_register_pck(u8 pck) {}

Contributors

PersonTokensPropCommitsCommitProp
Romain Izard9100.00%1100.00%
Total9100.00%1100.00%

#endif #endif /* __PMC_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Boris Brezillon6561.32%350.00%
Alexandre Belloni2523.58%233.33%
Romain Izard1615.09%116.67%
Total106100.00%6100.00%
Directory: drivers/clk/at91
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.