From b578d3e645a534bdc76f43e603e9f5b2cab131fa Mon Sep 17 00:00:00 2001
From: Gustav Toft <guto@factbird.com>
Date: Thu, 11 Apr 2024 10:34:17 +0200
Subject: [PATCH] Removed generic type parameter.

---
 embassy-net/src/raw.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/embassy-net/src/raw.rs b/embassy-net/src/raw.rs
index a6500a51f..7ecd913e7 100644
--- a/embassy-net/src/raw.rs
+++ b/embassy-net/src/raw.rs
@@ -91,7 +91,7 @@ impl<'a> RawSocket<'a> {
     /// Send a datagram.
     ///
     /// This method will wait until the datagram has been sent.`
-    pub async fn send<T>(&self, buf: &[u8]) {
+    pub async fn send(&self, buf: &[u8]) {
         poll_fn(move |cx| self.poll_send(buf, cx)).await
     }