brintos

brintos / linux-shallow public Read only

0
0
Text · 794 B · d972338 Raw
32 lines · c
1// SPDX-License-Identifier: GPL-2.0-or-later2/*3 * Instantiate UCSI device for Cypress CCGx Type-C controller.4 * Derived from i2c-designware-pcidrv.c and i2c-nvidia-gpu.c.5 */6 7#include <linux/i2c.h>8#include <linux/export.h>9#include <linux/module.h>10#include <linux/string.h>11 12#include "i2c-ccgx-ucsi.h"13 14struct software_node;15 16struct i2c_client *i2c_new_ccgx_ucsi(struct i2c_adapter *adapter, int irq,17				     const struct software_node *swnode)18{19	struct i2c_board_info info = {};20 21	strscpy(info.type, "ccgx-ucsi", sizeof(info.type));22	info.addr = 0x08;23	info.irq = irq;24	info.swnode = swnode;25 26	return i2c_new_client_device(adapter, &info);27}28EXPORT_SYMBOL_GPL(i2c_new_ccgx_ucsi);29 30MODULE_DESCRIPTION("Instantiate UCSI device for Cypress CCGx Type-C controller");31MODULE_LICENSE("GPL");32