]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/fdc.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / fdc.h
CommitLineData
2262cfee
WD
1/*
2 * (C) Copyright 2002
fa82f871 3 * Stäubli Faverges - <www.staubli.com>
2262cfee
WD
4 * Pierre AUBERT p.aubert@staubli.com
5 *
1a459660 6 * SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
7 */
8
9#ifndef _FDC_H_
10#define _FDC_H_
11
2262cfee
WD
12/* Functions prototype */
13int fdc_fdos_init (int drive);
14int fdc_fdos_seek (int where);
15int fdc_fdos_read (void *buffer, int len);
16
17int dos_open(char *name);
18int dos_read (ulong addr);
19int dos_dir (void);
20
2262cfee 21#endif