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.16 18 lines 407 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __SOC_NPCM8XX_CLOCK_H 3#define __SOC_NPCM8XX_CLOCK_H 4 5#include <linux/auxiliary_bus.h> 6#include <linux/container_of.h> 7 8struct npcm_clock_adev { 9 void __iomem *base; 10 struct auxiliary_device adev; 11}; 12 13static inline struct npcm_clock_adev *to_npcm_clock_adev(struct auxiliary_device *_adev) 14{ 15 return container_of(_adev, struct npcm_clock_adev, adev); 16} 17 18#endif