mvs_soc.c (ddfc9c4c59e2ea4871100d8c076adffe3af8ff21) mvs_soc.c (827252eefd1a22a9602ad03a272d7896b17e3371)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 451 unchanged lines hidden (view full) ---

460 DEVMETHOD(mvs_edma, mvs_edma),
461 { 0, 0 }
462};
463static driver_t mvs_driver = {
464 "mvs",
465 mvs_methods,
466 sizeof(struct mvs_controller)
467};
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 451 unchanged lines hidden (view full) ---

460 DEVMETHOD(mvs_edma, mvs_edma),
461 { 0, 0 }
462};
463static driver_t mvs_driver = {
464 "mvs",
465 mvs_methods,
466 sizeof(struct mvs_controller)
467};
468DRIVER_MODULE(mvs, simplebus, mvs_driver, mvs_devclass, 0, 0);
468DRIVER_MODULE(mvs, simplebus, mvs_driver, 0, 0);
469MODULE_VERSION(mvs, 1);
470MODULE_DEPEND(mvs, cam, 1, 1, 1);
469MODULE_VERSION(mvs, 1);
470MODULE_DEPEND(mvs, cam, 1, 1, 1);