Blame utils/fwparam_ibft/fwparam.h

Packit eace71
/*
Packit eace71
 * This program is free software; you can redistribute it and/or modify
Packit eace71
 * it under the terms of the GNU General Public License as published by
Packit eace71
 * the Free Software Foundation; either version 2 of the License, or
Packit eace71
 * (at your option) any later version.
Packit eace71
 *
Packit eace71
 * This program is distributed in the hope that it will be useful,
Packit eace71
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit eace71
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Packit eace71
 * GNU General Public License for more details.
Packit eace71
 *
Packit eace71
 * You should have received a copy of the GNU General Public License
Packit eace71
 * along with this program; if not, write to the Free Software
Packit eace71
 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
Packit eace71
 * USA.
Packit eace71
 */
Packit eace71
#ifndef FWPARAM_H_
Packit eace71
#define FWPARAM_H_
Packit eace71
Packit eace71
#include <stdint.h>
Packit eace71
#include "fw_context.h"
Packit eace71
Packit eace71
#define FILENAMESZ (1024)
Packit eace71
Packit eace71
struct boot_context;
Packit eace71
Packit eace71
int fwparam_sysfs_boot_info(struct boot_context *context);
Packit eace71
int fwparam_sysfs_get_targets(struct list_head *list);
Packit eace71
int fwparam_ppc_boot_info(struct boot_context *context);
Packit eace71
int fwparam_ppc_get_targets(struct list_head *list);
Packit eace71
Packit eace71
#endif /* FWPARAM_IBFT_H_ */