Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1573544
| Path | csiph.com!news.mixmin.net!news.unit0.net!news.panservice.it!bofh.it!news.nic.it!robomod |
|---|---|
| From | Derek Robson <robsonde@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH] Drivers: staging: speakup: spk_priv.h - style fix |
| Date | Sat, 04 Feb 2017 01:00:02 +0100 |
| Message-ID | <t6VVM-kN-5@gated-at.bofh.it> (permalink) |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=ldoYB2HM5YUiztu01o0CVOxZqMjykxNZHCXNd5nlZZY=; b=oWhSSymheIkwT1VZSYLZUhV7p9X4aoLlWJbTGV2hM1ctoWO779HQ+fopzivJ1dRCn8 uZ/n8Idw9sw1h66yQtPASa+Tyls47yQqhCZn7bbcqVI8uEZzjkM1gcmnUpBrWFrE3l40 l799zM2N7RxH5JOaIWuPdY5sLJnEt6skCfXv589P0kxgqXG20TPsNWT1v0JUK7R8+sAE a7azgjOkv/5Ksj+O+GLuAFP5DvC5pizE2AM+eZ+bE7iSM9YGo42q6sfCblKRWqmeFYPt FdOFYX2rLvQrUSGTWHj11FvT/XJNJSfsialfsJki7vwWr15WE79jbR81rqmja7hxD7jH 4UGw== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=ldoYB2HM5YUiztu01o0CVOxZqMjykxNZHCXNd5nlZZY=; b=YdBMgeJPM3gG1bsHerwsgWfgWQd7Ke8UYJRqvdPtbWc/euWNbI92K7+Nml+PEBxMi5 w6rnNYE1kQVcwP2bFhsCgl4YhUOCIcImW/CvE3E37Be6uipKXVZxHIq3nzbNduyNuz6X XWzIA+6WAMbLfhT0R9Q8C7nH/eRdxpCka+pTWAi00EgOzcUoXQ1s+B7GOud7d9LHI4y9 rlqHzYu+E32ra93/LQtXET+AuLeKFmrna0wxBtq/zPSSxFDJVeA38ZUqD9vMdBr1dDhN UlYblXzh3OuEUo4UzqJe+C18E8mFypmJwqWMHB1Uu7QiMov2jgkvZRvs5zOZCQAuf6Vs 16gQ== |
| X-Gm-Message-State | AIkVDXIf8t3c8ZublUb0s8g3WiCiXH+ozpYBN3v4XfmWhIdxTZF4vvTwlJgrdDNlZyEl2w== |
| X-Received | by 10.84.232.133 with SMTP id i5mr99028plk.79.1486166212257; Fri, 03 Feb 2017 15:56:52 -0800 (PST) |
| X-Mailer | git-send-email 2.11.1 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 25 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | speakup@linux-speakup.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org |
| X-Original-Date | Sat, 4 Feb 2017 12:56:41 +1300 |
| X-Original-Message-ID | <20170203235641.10306-1-robsonde@gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1573544 |
Show key headers only | View raw
Changed function definition argument to have identifier name. found using checkpatch Signed-off-by: Derek Robson <robsonde@gmail.com> --- drivers/staging/speakup/spk_priv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/speakup/spk_priv.h b/drivers/staging/speakup/spk_priv.h index 98c4b6f0344a..1952d7887b3b 100644 --- a/drivers/staging/speakup/spk_priv.h +++ b/drivers/staging/speakup/spk_priv.h @@ -64,8 +64,8 @@ void spk_synth_flush(struct spk_synth *synth); int spk_synth_is_alive_nop(struct spk_synth *synth); int spk_synth_is_alive_restart(struct spk_synth *synth); void synth_printf(const char *buf, ...); -int synth_request_region(u_long, u_long); -int synth_release_region(u_long, u_long); +int synth_request_region(unsigned long start, unsigned long n) +int synth_release_region(unsigned long start, unsigned long n) int synth_add(struct spk_synth *in_synth); void synth_remove(struct spk_synth *in_synth); -- 2.11.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Drivers: staging: speakup: spk_priv.h - style fix Derek Robson <robsonde@gmail.com> - 2017-02-04 01:00 +0100
Re: [PATCH] Drivers: staging: speakup: spk_priv.h - style fix Derek Robson <robsonde@gmail.com> - 2017-02-04 04:40 +0100
Re: [PATCH] Drivers: staging: speakup: spk_priv.h - style fix Joe Perches <joe@perches.com> - 2017-02-04 05:30 +0100
Re: Drivers: staging: speakup: spk_priv.h - style fix Guenter Roeck <linux@roeck-us.net> - 2017-02-04 05:40 +0100
csiph-web