linux/drivers/platform/x86/dell/dell-wmi-sysman/passwordattr-interface.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Functions corresponding to SET password methods under BIOS attributes interface GUID
 *
 *  Copyright (c) 2020 Dell Inc.
 */

#include <linux/wmi.h>
#include "dell-wmi-sysman.h"

static int call_password_interface(struct wmi_device *wdev, char *in_args, size_t size)
{}

/**
 * set_new_password() - Sets a system admin password
 * @password_type: The type of password to set
 * @new: The new password
 *
 * Sets the password using plaintext interface
 */
int set_new_password(const char *password_type, const char *new)
{}

static int bios_attr_pass_interface_probe(struct wmi_device *wdev, const void *context)
{}

static void bios_attr_pass_interface_remove(struct wmi_device *wdev)
{}

static const struct wmi_device_id bios_attr_pass_interface_id_table[] =;
static struct wmi_driver bios_attr_pass_interface_driver =;

int init_bios_attr_pass_interface(void)
{}

void exit_bios_attr_pass_interface(void)
{}

MODULE_DEVICE_TABLE(wmi, bios_attr_pass_interface_id_table);