linux/drivers/firewire/uapi-test.c

// SPDX-License-Identifier: GPL-2.0-only
//
// uapi_test.c - An application of Kunit to check layout of structures exposed to user space for
//		 FireWire subsystem.
//
// Copyright (c) 2023 Takashi Sakamoto

#include <kunit/test.h>
#include <linux/firewire-cdev.h>

// Known issue added at v2.6.27 kernel.
static void structure_layout_event_response(struct kunit *test)
{}

// Added at v6.5.
static void structure_layout_event_request3(struct kunit *test)
{}

// Added at v6.5.
static void structure_layout_event_response2(struct kunit *test)
{}

// Added at v6.5.
static void structure_layout_event_phy_packet2(struct kunit *test)
{}

static struct kunit_case structure_layout_test_cases[] =;

static struct kunit_suite structure_layout_test_suite =;
kunit_test_suite();

MODULE_DESCRIPTION();
MODULE_LICENSE();