From: David Woodhouse <dwmw2@infradead.org>
To: alan@lxorguk.ukuu.org.uk
Cc: linux-kernel@vger.kernel.org
Subject: JFFS and JFFS2 MODULE_* tags.
Date: Tue, 02 Oct 2001 10:38:44 +0100 [thread overview]
Message-ID: <2828.1002015524@redhat.com> (raw)
The addition of MODULE_LICENSE(sic) prompted me to add MODULE_AUTHOR and
MODULE_DESCRIPTION tags too. This also fixes an unnecessary use of min_t().
diff -uNr -x CVS linux-ac/fs/jffs/inode-v23.c linux-ac-mtd/fs/jffs/inode-v23.c
--- linux-ac/fs/jffs/inode-v23.c Tue Oct 2 10:18:44 2001
+++ linux-ac-mtd/fs/jffs/inode-v23.c Tue Oct 2 10:32:22 2001
@@ -10,7 +10,7 @@
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
- * $Id: inode-v23.c,v 1.69 2001/09/23 23:28:36 dwmw2 Exp $
+ * $Id: inode-v23.c,v 1.70 2001/10/02 09:16:02 dwmw2 Exp $
*
* Ported to Linux 2.3.x and MTD:
* Copyright (C) 2000 Alexander Larsson (alex@cendio.se), Cendio Systems AB
@@ -1467,7 +1467,7 @@
D3(printk("jffs_file_write(): new f_pos %ld.\n", (long)pos));
- thiscount = min_t(unsigned int, c->fmc->max_chunk_size - sizeof(struct jffs_raw_inode), count);
+ thiscount = min(c->fmc->max_chunk_size - sizeof(struct jffs_raw_inode), count);
}
out:
D3(printk (KERN_NOTICE "file_write(): up biglock\n"));
@@ -1764,4 +1764,7 @@
module_init(init_jffs_fs)
module_exit(exit_jffs_fs)
+
+MODULE_DESCRIPTION("The Journalling Flash File System");
+MODULE_AUTHOR("Axis Communications AB.");
MODULE_LICENSE("GPL");
diff -uNr -x CVS linux-ac/fs/jffs2/super.c linux-ac-mtd/fs/jffs2/super.c
--- linux-ac/fs/jffs2/super.c Tue Oct 2 10:18:44 2001
+++ linux-ac-mtd/fs/jffs2/super.c Tue Oct 2 10:32:27 2001
@@ -31,7 +31,7 @@
* provisions above, a recipient may use your version of this file
* under either the RHEPL or the GPL.
*
- * $Id: super.c,v 1.47 2001/09/23 11:00:04 dwmw2 Exp $
+ * $Id: super.c,v 1.48 2001/10/02 09:16:23 dwmw2 Exp $
*
*/
@@ -381,4 +381,8 @@
module_init(init_jffs2_fs);
module_exit(exit_jffs2_fs);
-MODULE_LICENSE("GPL"); // Also uses the RHEPL
+
+MODULE_DESCRIPTION("The Journalling Flash File System, v2");
+MODULE_AUTHOR("Red Hat, Inc.");
+MODULE_LICENSE("GPL"); // Actually dual-licensed, but it doesn't matter for
+ // the sake of this tag. It's Free Software.
--
dwmw2
reply other threads:[~2001-10-02 9:38 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=2828.1002015524@redhat.com \
--to=dwmw2@infradead.org \
--cc=alan@lxorguk.ukuu.org.uk \
--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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.