1*ecd207b4Sskrll /* $NetBSD: cpus_fdt.c,v 1.1 2023/06/12 12:58:17 skrll Exp $ */
2*ecd207b4Sskrll
3*ecd207b4Sskrll /*-
4*ecd207b4Sskrll * Copyright (c) 2023 The NetBSD Foundation, Inc.
5*ecd207b4Sskrll * All rights reserved.
6*ecd207b4Sskrll *
7*ecd207b4Sskrll * This code is derived from software contributed to The NetBSD Foundation
8*ecd207b4Sskrll * by Nick Hudson
9*ecd207b4Sskrll *
10*ecd207b4Sskrll * Redistribution and use in source and binary forms, with or without
11*ecd207b4Sskrll * modification, are permitted provided that the following conditions
12*ecd207b4Sskrll * are met:
13*ecd207b4Sskrll * 1. Redistributions of source code must retain the above copyright
14*ecd207b4Sskrll * notice, this list of conditions and the following disclaimer.
15*ecd207b4Sskrll * 2. Redistributions in binary form must reproduce the above copyright
16*ecd207b4Sskrll * notice, this list of conditions and the following disclaimer in the
17*ecd207b4Sskrll * documentation and/or other materials provided with the distribution.
18*ecd207b4Sskrll *
19*ecd207b4Sskrll * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*ecd207b4Sskrll * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*ecd207b4Sskrll * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*ecd207b4Sskrll * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*ecd207b4Sskrll * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*ecd207b4Sskrll * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*ecd207b4Sskrll * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*ecd207b4Sskrll * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*ecd207b4Sskrll * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*ecd207b4Sskrll * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*ecd207b4Sskrll * POSSIBILITY OF SUCH DAMAGE.
30*ecd207b4Sskrll */
31*ecd207b4Sskrll
32*ecd207b4Sskrll #include <sys/cdefs.h>
33*ecd207b4Sskrll __KERNEL_RCSID(0, "$NetBSD: cpus_fdt.c,v 1.1 2023/06/12 12:58:17 skrll Exp $");
34*ecd207b4Sskrll
35*ecd207b4Sskrll #include <sys/param.h>
36*ecd207b4Sskrll #include <sys/types.h>
37*ecd207b4Sskrll
38*ecd207b4Sskrll #include <dev/fdt/fdtvar.h>
39*ecd207b4Sskrll
40*ecd207b4Sskrll void
fdtbus_cpus_md_attach(device_t parent,device_t self,void * aux)41*ecd207b4Sskrll fdtbus_cpus_md_attach(device_t parent, device_t self, void *aux)
42*ecd207b4Sskrll {
43*ecd207b4Sskrll }
44