All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] Documentation:fixed a small typo in Documentation/hid/hiddev.rst:11
@ 2025-04-19 14:59 Tinu Kuriakose
  0 siblings, 0 replies; 2+ messages in thread
From: Tinu Kuriakose @ 2025-04-19 14:59 UTC (permalink / raw)
  To: skhan; +Cc: linux-kernel

From c7594b07c54617f552d39617714b042e5b7a99b8 Mon Sep 17 00:00:00 2001
From: tinukcheriya <tinuk11c@gmail.com>
Date: Wed, 16 Apr 2025 01:28:28 +0530
Subject: [PATCH] Helloworld kernel module

---
 Makefile     |  7 +++++++
 helloworld.c | 20 ++++++++++++++++++++
 2 files changed, 27 insertions(+)
 create mode 100644 Makefile
 create mode 100644 helloworld.c

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0b7a8ac
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+obj-m +=helloworld.o
+
+all:
+ make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
+
+clean:
+ make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
diff --git a/helloworld.c b/helloworld.c
new file mode 100644
index 0000000..7bcc53b
--- /dev/null
+++ b/helloworld.c
@@ -0,0 +1,20 @@
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/kernel.h>
+
+static int __init helloworldinit(void){
+ pr_info("helloworld kernel module\n");
+ return 0;
+}
+
+static void __exit helloworldexit(void){
+ pr_info("goodbye exiting\n");
+}
+
+module_init(helloworldinit);
+module_exit(helloworldexit);
+
+MODULE_LICENSE("MIT");
+MODULE_AUTHOR("TINU");
+MODULE_DESCRIPTION("a simple helloworld module");
+
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [patch] Documentation:fixed a small typo in Documentation/hid/hiddev.rst:11
       [not found] <CAC=vsvAv88P7Z_as3k0ceRNCy5Jq-1Y8ge=XPaRXcT4uzi1XBA@mail.gmail.com>
@ 2025-04-22 17:22 ` Shuah Khan
  0 siblings, 0 replies; 2+ messages in thread
From: Shuah Khan @ 2025-04-22 17:22 UTC (permalink / raw)
  To: Tinu Kuriakose, Jonathan Corbet; +Cc: linux-kernel, linux-doc, Shuah Khan

On 4/19/25 08:51, Tinu Kuriakose wrote:
>  From 4264e1e8a827998708e532f4a843a20115e92c5f Mon Sep 17 00:00:00 2001
> From: tinukcheriya <tinuk11c@gmail.com <mailto:tinuk11c@gmail.com>>
> Date: Sat, 19 Apr 2025 20:12:37 +0530
> Subject: [PATCH] docs : hid : fix spell error at line 12 in hid-alps.rst
> 
> Signed-off-by: tinukcheriya <tinuk11c@gmail.com <mailto:tinuk11c@gmail.com>>

Run get_maintainers script for full list of people to send the patches to.
Added Documentation maintainer and linux-doc list.

You might have to send the RESEND the patch with cc and to the right
set of people.

> ---
>   Documentation/hid/hid-alps.rst | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/hid/hid-alps.rst b/Documentation/hid/hid-alps.rst
> index 767c96bcbb7c..94382bb0ada4 100644
> --- a/Documentation/hid/hid-alps.rst
> +++ b/Documentation/hid/hid-alps.rst
> @@ -9,7 +9,7 @@ Currently ALPS HID driver supports U1 Touchpad device.
>   U1 device basic information.
> 
>   ========== ======
> -Vender ID 0x044E
> +Vendor ID 0x044E
>   Product ID 0x120B
>   Version ID 0x0121
>   ========== ======
> -- 
> 2.25.1

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-04-22 17:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAC=vsvAv88P7Z_as3k0ceRNCy5Jq-1Y8ge=XPaRXcT4uzi1XBA@mail.gmail.com>
2025-04-22 17:22 ` [patch] Documentation:fixed a small typo in Documentation/hid/hiddev.rst:11 Shuah Khan
2025-04-19 14:59 Tinu Kuriakose

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.