From: "Ahmed S. Darwish" <darwish.07@gmail.com> To: linux-kernel@vger.kernel.org Subject: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts Date: Fri, 5 Jan 2007 08:36:00 +0200 Message-ID: <20070105063600.GA13571@Ahmed> (raw) Remove unnecessary kmalloc casts in drivers/char/tty_io.c Signed-off-by: Ahmed Darwish <darwish.07@gmail.com> diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 47a6eac..97f54b0 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c @@ -1932,16 +1932,14 @@ static int init_dev(struct tty_driver *driver, int idx, } if (!*tp_loc) { - tp = (struct ktermios *) kmalloc(sizeof(struct ktermios), - GFP_KERNEL); + tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL); if (!tp) goto free_mem_out; *tp = driver->init_termios; } if (!*ltp_loc) { - ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios), - GFP_KERNEL); + ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL); if (!ltp) goto free_mem_out; memset(ltp, 0, sizeof(struct ktermios)); @@ -1965,16 +1963,14 @@ static int init_dev(struct tty_driver *driver, int idx, } if (!*o_tp_loc) { - o_tp = (struct ktermios *) - kmalloc(sizeof(struct ktermios), GFP_KERNEL); + o_tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL); if (!o_tp) goto free_mem_out; *o_tp = driver->other->init_termios; } if (!*o_ltp_loc) { - o_ltp = (struct ktermios *) - kmalloc(sizeof(struct ktermios), GFP_KERNEL); + o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL); if (!o_ltp) goto free_mem_out; memset(o_ltp, 0, sizeof(struct ktermios)); -- Ahmed S. Darwish http://darwish-07.blogspot.com
next reply index Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2007-01-05 6:36 Ahmed S. Darwish [this message] 2007-01-05 6:56 ` Robert P. J. Day 2007-01-05 7:14 ` Ahmed S. Darwish 2007-01-05 8:10 ` Rolf Eike Beer 2007-01-05 10:06 ` Ahmed S. Darwish 2007-01-05 10:18 ` Robert P. J. Day 2007-01-05 10:39 ` Pekka Enberg 2007-01-05 10:51 ` Alan 2007-01-05 10:41 ` Robert P. J. Day 2007-01-05 11:03 ` Ahmed S. Darwish 2007-01-06 2:36 ` Ahmed S. Darwish 2007-01-06 7:35 ` Robert P. J. Day 2007-01-05 10:26 ` Rolf Eike Beer 2007-01-05 10:32 ` Ahmed S. Darwish 2007-01-05 11:54 ` Rolf Eike Beer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20070105063600.GA13571@Ahmed \ --to=darwish.07@gmail.com \ --cc=linux-kernel@vger.kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
LKML Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lkml.kernel.org/lkml/0 lkml/git/0.git git clone --mirror https://lkml.kernel.org/lkml/1 lkml/git/1.git git clone --mirror https://lkml.kernel.org/lkml/2 lkml/git/2.git git clone --mirror https://lkml.kernel.org/lkml/3 lkml/git/3.git git clone --mirror https://lkml.kernel.org/lkml/4 lkml/git/4.git git clone --mirror https://lkml.kernel.org/lkml/5 lkml/git/5.git git clone --mirror https://lkml.kernel.org/lkml/6 lkml/git/6.git git clone --mirror https://lkml.kernel.org/lkml/7 lkml/git/7.git git clone --mirror https://lkml.kernel.org/lkml/8 lkml/git/8.git git clone --mirror https://lkml.kernel.org/lkml/9 lkml/git/9.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 lkml lkml/ https://lkml.kernel.org/lkml \ linux-kernel@vger.kernel.org public-inbox-index lkml Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.linux-kernel AGPL code for this site: git clone https://public-inbox.org/public-inbox.git