Blame utils/fwparam_ibft/fwparam.h

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