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 v6.15-rc6 19 lines 505 B view raw
1/* 2 * Allwinner SoCs SRAM Controller Driver 3 * 4 * Copyright (C) 2015 Maxime Ripard 5 * 6 * Author: Maxime Ripard <maxime.ripard@free-electrons.com> 7 * 8 * This file is licensed under the terms of the GNU General Public 9 * License version 2. This program is licensed "as is" without any 10 * warranty of any kind, whether express or implied. 11 */ 12 13#ifndef _SUNXI_SRAM_H_ 14#define _SUNXI_SRAM_H_ 15 16int sunxi_sram_claim(struct device *dev); 17void sunxi_sram_release(struct device *dev); 18 19#endif /* _SUNXI_SRAM_H_ */