[media] m88ts2022: fix some style issues reported by checkpatch.pl
authorAntti Palosaari <crope@iki.fi>
Wed, 18 Dec 2013 15:46:45 +0000 (12:46 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Thu, 19 Dec 2013 11:24:57 +0000 (09:24 -0200)
Latest checkpatch.pl has some new requirements for coding style.
Fix some of those.

* remove Free Software Foundation postal address
* use sizeof(*foo), not sizeof(struct foo)

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/tuners/m88ts2022.c
drivers/media/tuners/m88ts2022.h
drivers/media/tuners/m88ts2022_priv.h

index 1155603..40c42de 100644 (file)
  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *    GNU General Public License for more details.
  *
- *    You should have received a copy of the GNU General Public License along
- *    with this program; if not, write to the Free Software Foundation, Inc.,
- *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
  * Some calculations are taken from existing TS2020 driver.
  */
 
@@ -548,7 +544,7 @@ static int m88ts2022_probe(struct i2c_client *client,
        int ret;
        u8 chip_id, u8tmp;
 
-       priv = kzalloc(sizeof(struct m88ts2022_priv), GFP_KERNEL);
+       priv = kzalloc(sizeof(*priv), GFP_KERNEL);
        if (!priv) {
                ret = -ENOMEM;
                dev_err(&client->dev, "%s: kzalloc() failed\n", KBUILD_MODNAME);
index 1943b83..659fa1b 100644 (file)
  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *    GNU General Public License for more details.
- *
- *    You should have received a copy of the GNU General Public License along
- *    with this program; if not, write to the Free Software Foundation, Inc.,
- *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef M88TS2022_H
index a1fbb18..0363dd8 100644 (file)
  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *    GNU General Public License for more details.
- *
- *    You should have received a copy of the GNU General Public License along
- *    with this program; if not, write to the Free Software Foundation, Inc.,
- *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef M88TS2022_PRIV_H