linux/drivers/usb/typec/altmodes/nvidia.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2019 NVIDIA Corporation. All rights reserved.
 *
 * NVIDIA USB Type-C Alt Mode Driver
 */
#include <linux/module.h>
#include <linux/usb/typec_altmode.h>
#include <linux/usb/typec_dp.h>
#include "displayport.h"

static int nvidia_altmode_probe(struct typec_altmode *alt)
{}

static void nvidia_altmode_remove(struct typec_altmode *alt)
{}

static const struct typec_device_id nvidia_typec_id[] =;
MODULE_DEVICE_TABLE(typec, nvidia_typec_id);

static struct typec_altmode_driver nvidia_altmode_driver =;
module_typec_altmode_driver();

MODULE_LICENSE();
MODULE_DESCRIPTION();