/* Copyright (C) 2020 Intel Corporation   This software is licensed under (a) a 3-clause BSD license; or alternatively (b) the GPL v2 license   -- A. BSD-3-Clause ---------------------------- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice,    this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice,    this list of conditions and the following disclaimer in the documentation    and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors    may be used to endorse or promote products derived from this software    without specific prior written permission.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   -- B. GPL-2.0 ---------------------------- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation.   This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.   You should have received a copy of the GNU General Public License along with this program; if not, see . ------------------------------ SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only) */ /*! \file puma_dac_kernel.h * \brief Defines Puma DAC static UIDs/GIDs to be used in kernel-space. */ #ifndef _PUMA_DAC_KERNEL_H_ #define _PUMA_DAC_KERNEL_H_ #define PUMA_DAC_DOCSIS_UID 10000 #define PUMA_DAC_DOCSIS_GID 10000 #define PUMA_DAC_PP_UID 10008 #define PUMA_DAC_PP_GID 10008 #define PUMA_DAC_PDSP_UID 10009 #define PUMA_DAC_PDSP_GID 10009 #define PUMA_DAC_PDSPFW_UID 10010 #define PUMA_DAC_PDSPFW_GID 10010 #define PUMA_DAC_SPDTST_UID 10011 #define PUMA_DAC_SPDTST_GID 10011 #define PUMA_DAC_PPHIL_GID 10016 #define PUMA_DAC_MOCA_UID 10017 #define PUMA_DAC_HW_MBOX_GID 10035 #endif /* ! _PUMA_DAC_KERNEL_H_ */