lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 6 Aug 2020 17:27:17 -0700 From: Hridya Valsaraju <hridya@...gle.com> To: Colin King <colin.king@...onical.com> Cc: Laura Abbott <labbott@...hat.com>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>, Arve Hjønnevåg <arve@...roid.com>, Todd Kjos <tkjos@...roid.com>, Martijn Coenen <maco@...roid.com>, Joel Fernandes <joel@...lfernandes.org>, Christian Brauner <christian@...uner.io>, Suren Baghdasaryan <surenb@...gle.com>, "open list:ANDROID DRIVERS" <devel@...verdev.osuosl.org>, dri-devel@...ts.freedesktop.org, linaro-mm-sig@...ts.linaro.org, linux-media@...r.kernel.org, kernel-janitors@...r.kernel.org, LKML <linux-kernel@...r.kernel.org> Subject: Re: [PATCH] staging: ion: fix spelling mistake in function name "detatch" -> "detach" On Wed, Aug 5, 2020 at 4:26 AM Colin King <colin.king@...onical.com> wrote: > > From: Colin Ian King <colin.king@...onical.com> > > There is a spelling mistake in the function name ion_dma_buf_detatch. > Fix it by removing the extraneous t. > > Signed-off-by: Colin Ian King <colin.king@...onical.com> > --- Thanks Colin! Acked-by: Hridya Valsaraju <hridya@...gle.com> > drivers/staging/android/ion/ion.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c > index 3c9f09506ffa..e1fe03ceb7f1 100644 > --- a/drivers/staging/android/ion/ion.c > +++ b/drivers/staging/android/ion/ion.c > @@ -205,8 +205,8 @@ static int ion_dma_buf_attach(struct dma_buf *dmabuf, > return 0; > } > > -static void ion_dma_buf_detatch(struct dma_buf *dmabuf, > - struct dma_buf_attachment *attachment) > +static void ion_dma_buf_detach(struct dma_buf *dmabuf, > + struct dma_buf_attachment *attachment) > { > struct ion_dma_buf_attachment *a = attachment->priv; > struct ion_buffer *buffer = dmabuf->priv; > @@ -331,7 +331,7 @@ static const struct dma_buf_ops dma_buf_ops = { > .mmap = ion_mmap, > .release = ion_dma_buf_release, > .attach = ion_dma_buf_attach, > - .detach = ion_dma_buf_detatch, > + .detach = ion_dma_buf_detach, > .begin_cpu_access = ion_dma_buf_begin_cpu_access, > .end_cpu_access = ion_dma_buf_end_cpu_access, > }; > -- > 2.27.0 >
Powered by blists - more mailing lists