blob: 332796888684c1cd3749a6e1f3e0b76e5dd02751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* fwloader.h -- a small firmware loader.
*
* Peter Jones (pjones@redhat.com)
*
* Copyright 2006-2007 Red Hat, Inc.
*
* This software may be freely redistributed under the terms of the GNU
* General Public License, version 2.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef FWLOADER_H
#define FWLOADER_H 1
#include "loader.h"
extern void set_fw_search_path(struct loaderData_s *loaderData, char *path);
extern void add_fw_search_dir(struct loaderData_s *loaderData, char *dir);
extern void start_fw_loader(struct loaderData_s *loaderData);
extern void stop_fw_loader(struct loaderData_s *loaderData);
#endif /* FWLOADER_H */
/*
* vim:ts=8:sw=4:sts=4:et
*/
|