Path: blob/master/arch/powerpc/platforms/iseries/hvlpconfig.c
10820 views
/*1* Copyright (C) 2001 Kyle A. Lucke, IBM Corporation2*3* This program is free software; you can redistribute it and/or modify4* it under the terms of the GNU General Public License as published by5* the Free Software Foundation; either version 2 of the License, or6* (at your option) any later version.7*8* This program is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11* GNU General Public License for more details.12*13* You should have received a copy of the GNU General Public License14* along with this program; if not, write to the Free Software15* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA16*/1718#include <linux/module.h>19#include <asm/iseries/hv_lp_config.h>20#include "it_lp_naca.h"2122HvLpIndex HvLpConfig_getLpIndex_outline(void)23{24return HvLpConfig_getLpIndex();25}26EXPORT_SYMBOL(HvLpConfig_getLpIndex_outline);2728HvLpIndex HvLpConfig_getLpIndex(void)29{30return itLpNaca.xLpIndex;31}32EXPORT_SYMBOL(HvLpConfig_getLpIndex);3334HvLpIndex HvLpConfig_getPrimaryLpIndex(void)35{36return itLpNaca.xPrimaryLpIndex;37}38EXPORT_SYMBOL_GPL(HvLpConfig_getPrimaryLpIndex);394041