X-Git-Url: https://git.reactos.org/?p=reactos.git;a=blobdiff_plain;f=reactos%2Fdrivers%2Fdd%2Fbeep%2Fbeep.c;h=939228da773a6675a85f433f42d8d0e9b9fc4600;hp=a3b39a3fa988c38360272ff3866fc7d80e7b8e96;hb=0448c9617fb70e9c4d8683e3cc9645fd222652d1;hpb=d0cd0df7fe585c2b679a1873aafaf85c3a759630 diff --git a/reactos/drivers/dd/beep/beep.c b/reactos/drivers/dd/beep/beep.c index a3b39a3fa98..939228da773 100644 --- a/reactos/drivers/dd/beep/beep.c +++ b/reactos/drivers/dd/beep/beep.c @@ -243,7 +243,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PDEVICE_EXTENSION DeviceExtension; PDEVICE_OBJECT DeviceObject; UNICODE_STRING DeviceName = RTL_CONSTANT_STRING(L"\\Device\\Beep"); - UNICODE_STRING SymlinkName = RTL_CONSTANT_STRING(L"\\??\\Beep"); NTSTATUS Status; DPRINT("Beep Device Driver 0.0.3\n"); @@ -277,10 +276,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, SynchronizationEvent, FALSE); - /* Create the dos device link */ - IoCreateSymbolicLink(&SymlinkName, - &DeviceName); - return(STATUS_SUCCESS); }