1*1ae25866SJustin Hibbits /*- 2*1ae25866SJustin Hibbits * SPDX-License-Identifier: BSD-2-Clause 3*1ae25866SJustin Hibbits * 4*1ae25866SJustin Hibbits * Copyright (c) 2025 Juniper Networks, Inc. 5*1ae25866SJustin Hibbits * 6*1ae25866SJustin Hibbits * Redistribution and use in source and binary forms, with or without 7*1ae25866SJustin Hibbits * modification, are permitted provided that the following conditions 8*1ae25866SJustin Hibbits * are met: 9*1ae25866SJustin Hibbits * 1. Redistributions of source code must retain the above copyright 10*1ae25866SJustin Hibbits * notice, this list of conditions and the following disclaimer. 11*1ae25866SJustin Hibbits * 2. Redistributions in binary form must reproduce the above copyright 12*1ae25866SJustin Hibbits * notice, this list of conditions and the following disclaimer in the 13*1ae25866SJustin Hibbits * documentation and/or other materials provided with the distribution. 14*1ae25866SJustin Hibbits * 15*1ae25866SJustin Hibbits * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*1ae25866SJustin Hibbits * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*1ae25866SJustin Hibbits * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*1ae25866SJustin Hibbits * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*1ae25866SJustin Hibbits * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*1ae25866SJustin Hibbits * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*1ae25866SJustin Hibbits * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*1ae25866SJustin Hibbits * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*1ae25866SJustin Hibbits * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*1ae25866SJustin Hibbits * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*1ae25866SJustin Hibbits * SUCH DAMAGE. 26*1ae25866SJustin Hibbits */ 27*1ae25866SJustin Hibbits 28*1ae25866SJustin Hibbits #ifndef _ARM64_KEXEC_H_ 29*1ae25866SJustin Hibbits #define _ARM64_KEXEC_H_ 30*1ae25866SJustin Hibbits 31*1ae25866SJustin Hibbits #define KEXEC_MD_PAGES(x) 0 32*1ae25866SJustin Hibbits 33*1ae25866SJustin Hibbits #endif /* _ARM64_KEXEC_H_ */ 34