1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __SOC_NPCM8XX_CLOCK_H
#define __SOC_NPCM8XX_CLOCK_H

#include <linux/auxiliary_bus.h>
#include <linux/container_of.h>

struct npcm_clock_adev {
	void __iomem *base;
	struct auxiliary_device adev;
};

static inline struct npcm_clock_adev *to_npcm_clock_adev(struct auxiliary_device *_adev)
{
	return container_of(_adev, struct npcm_clock_adev, adev);
}

#endif
於是可以不回頭的逆風飛翔 不怕心頭有雨 眼底有霜