[FDC]
[reactos.git] / reactos / drivers / storage / fdc / fdc / pdo.c
1 /*
2 * PROJECT: ReactOS Floppy Disk Controller Driver
3 * LICENSE: GNU GPLv2 only as published by the Free Software Foundation
4 * FILE: drivers/storage/fdc/fdc/pdo.c
5 * PURPOSE: Physical Device Object routines
6 * PROGRAMMERS: Eric Kohl
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include "fdc.h"
12
13 /* FUNCTIONS ******************************************************************/
14
15 NTSTATUS
16 NTAPI
17 FdcPdoPnp(
18 IN PDEVICE_OBJECT DeviceObject,
19 IN PIRP Irp)
20 {
21 NTSTATUS Status = STATUS_NOT_SUPPORTED;
22 DPRINT1("FdcPdoPnp()\n");
23 return Status;
24 }
25
26 /* EOF */