From: Chris Packham Date: Mon, 21 Oct 2019 01:43:36 +0000 (+1300) Subject: docs: ioctl: fix typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b275fb6013df5d9c17702491bf4533d559561515;p=linux.git docs: ioctl: fix typo "pointres" should be "pointers". Signed-off-by: Chris Packham Signed-off-by: Jonathan Corbet --- diff --git a/Documentation/process/botching-up-ioctls.rst b/Documentation/process/botching-up-ioctls.rst index ac697fef35457..2d4829b2fb09d 100644 --- a/Documentation/process/botching-up-ioctls.rst +++ b/Documentation/process/botching-up-ioctls.rst @@ -46,7 +46,7 @@ will need to add a 32-bit compat layer: conversion or worse, fiddle the raw __u64 through your code since that diminishes the checking tools like sparse can provide. The macro u64_to_user_ptr can be used in the kernel to avoid warnings about integers - and pointres of different sizes. + and pointers of different sizes. Basics