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.3-rc6 20 lines 372 B view raw
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* Copyright (C) 2018 ROHM Semiconductors */ 3 4#ifndef __LINUX_MFD_ROHM_H__ 5#define __LINUX_MFD_ROHM_H__ 6 7enum { 8 ROHM_CHIP_TYPE_BD71837 = 0, 9 ROHM_CHIP_TYPE_BD71847, 10 ROHM_CHIP_TYPE_BD70528, 11 ROHM_CHIP_TYPE_AMOUNT 12}; 13 14struct rohm_regmap_dev { 15 unsigned int chip_type; 16 struct device *dev; 17 struct regmap *regmap; 18}; 19 20#endif