From: Geordan Neukum Date: Sat, 18 May 2019 02:29:57 +0000 (+0000) Subject: staging: kpc2000: kpc_i2c: reformat copyright for better readability X-Git-Tag: v5.15~5977^2~460 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=11011c03d647d95b7a09f2ca6a39fc9c9f66a1a5;p=platform%2Fkernel%2Flinux-starfive.git staging: kpc2000: kpc_i2c: reformat copyright for better readability The copyright header in i2c_driver.c is difficult to read and not chronologically ordered. Reformat and reorganize the copyright header to be similar to other drivers in the i2c subsystem. Signed-off-by: Geordan Neukum Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c b/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c index 6dda4eb..6cb63d2 100644 --- a/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c +++ b/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c @@ -1,15 +1,21 @@ // SPDX-License-Identifier: GPL-2.0+ -/* Copyright (c) 2014-2018 Daktronics, - Matt Sickler , - Jordon Hofer - Adapted i2c-i801.c for use with Kadoka hardware. - Copyright (c) 1998 - 2002 Frodo Looijaard , - Philip Edelbrock , and Mark D. Studebaker - - Copyright (C) 2007 - 2012 Jean Delvare - Copyright (C) 2010 Intel Corporation, - David Woodhouse -*/ +/* + * KPC2000 i2c driver + * + * Adapted i2c-i801.c for use with Kadoka hardware. + * + * Copyright (C) 1998 - 2002 + * Frodo Looijaard , + * Philip Edelbrock , + * Mark D. Studebaker + * Copyright (C) 2007 - 2012 + * Jean Delvare + * Copyright (C) 2010 Intel Corporation + * David Woodhouse + * Copyright (C) 2014-2018 Daktronics + * Matt Sickler , + * Jordon Hofer + */ #include #include #include @@ -445,7 +451,7 @@ static s32 i801_access(struct i2c_adapter *adap, u16 addr, unsigned short flags, struct i2c_device *priv = i2c_get_adapdata(adap); dev_dbg(&priv->adapter.dev, "i801_access (addr=%0d) flags=%x read_write=%x command=%x size=%x", - addr, flags, read_write, command, size ); + addr, flags, read_write, command, size ); hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC) && size != I2C_SMBUS_QUICK && size != I2C_SMBUS_I2C_BLOCK_DATA;