Date:2011-07-08 05:17:32 (12 years 8 months ago)
Author:Werner Almesberger
Commit:846338826bb4971daa49c454d6c34f366d0f66fe
Message:atusb: use MODULE_AUTHOR according to include/linux/module.h; added myself

include/linux/module.h decrees:
/*
* Author(s), use "Name <email>" or just "Name", for multiple
* authors use multiple MODULE_AUTHOR() statements/lines.
*/

Make it so.
Files: drivers/spi/atusb.c (2 diffs)

Change Details

drivers/spi/atusb.c
33 *
44 * Copyright (c) 2011 Richard Sharpe <realrichardsharpe@gmail.com>
55 * Copyright (c) 2011 Stefan Schmidt <stefan@datenfreihafen.org>
6 * Copyright (c) 2011 Werner Almesberger <werner@almesberger.net>
67 *
78 * This program is free software; you can redistribute it and/or
89 * modify it under the terms of the GNU General Public License as
...... 
742743module_init (atusb_init);
743744module_exit (atusb_exit);
744745
745MODULE_AUTHOR("Richard Sharpe <realrichardsharpe@gmail.com>, Stefan Schmidt \
746        <stefan@datenfreihafen.org>");
746MODULE_AUTHOR("Richard Sharpe <realrichardsharpe@gmail.com>");
747MODULE_AUTHOR("Stefan Schmidt <stefan@datenfreihafen.org>");
748MODULE_AUTHOR("Werner Almesberger <werner@almesberger.net>");
747749MODULE_DESCRIPTION("ATUSB ben-wpan Driver");
748750MODULE_LICENSE("GPL");

Archive Download the corresponding diff file



interactive