SDL: This delay is no longer needed on Steam Link hardware

From 40e5ce7fe518c0e5a98735d1165a306642ac0e62 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 4 Jun 2021 13:23:54 -0700
Subject: [PATCH] This delay is no longer needed on Steam Link hardware

---
 src/core/linux/SDL_udev.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/core/linux/SDL_udev.c b/src/core/linux/SDL_udev.c
index 8eaf2f204b..e5a6630648 100644
--- a/src/core/linux/SDL_udev.c
+++ b/src/core/linux/SDL_udev.c
@@ -451,9 +451,6 @@ SDL_UDEV_Poll(void)
 
         if (action) {
             if (SDL_strcmp(action, "add") == 0) {
-                /* Wait for the device to finish initialization */
-                SDL_Delay(100);
-
                 device_event(SDL_UDEV_DEVICEADDED, dev);
             } else if (SDL_strcmp(action, "remove") == 0) {
                 device_event(SDL_UDEV_DEVICEREMOVED, dev);