Modified the complete file comments in C++ style, to make them look more intentional
Signed-off-by: Kirill Marinushkin kmarinushkin@birdec.tech Cc: Mark Brown broonie@kernel.org Cc: alsa-devel@alsa-project.org Cc: linux-kernel@vger.kernel.org --- sound/soc/codecs/pcm3060-i2c.c | 9 ++++----- sound/soc/codecs/pcm3060-spi.c | 9 ++++----- sound/soc/codecs/pcm3060.c | 9 ++++----- 3 files changed, 12 insertions(+), 15 deletions(-)
diff --git a/sound/soc/codecs/pcm3060-i2c.c b/sound/soc/codecs/pcm3060-i2c.c index 03d2b4323626..cdc8314882bc 100644 --- a/sound/soc/codecs/pcm3060-i2c.c +++ b/sound/soc/codecs/pcm3060-i2c.c @@ -1,9 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 -/* - * PCM3060 I2C driver - * - * Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech - */ +// +// PCM3060 I2C driver +// +// Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech
#include <linux/i2c.h> #include <linux/module.h> diff --git a/sound/soc/codecs/pcm3060-spi.c b/sound/soc/codecs/pcm3060-spi.c index 8961e095ae73..f6f19fa80932 100644 --- a/sound/soc/codecs/pcm3060-spi.c +++ b/sound/soc/codecs/pcm3060-spi.c @@ -1,9 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 -/* - * PCM3060 SPI driver - * - * Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech - */ +// +// PCM3060 SPI driver +// +// Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech
#include <linux/module.h> #include <linux/spi/spi.h> diff --git a/sound/soc/codecs/pcm3060.c b/sound/soc/codecs/pcm3060.c index ef7c627c9ac5..5b9718fa766d 100644 --- a/sound/soc/codecs/pcm3060.c +++ b/sound/soc/codecs/pcm3060.c @@ -1,9 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 -/* - * PCM3060 codec driver - * - * Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech - */ +// +// PCM3060 codec driver +// +// Copyright (C) 2018 Kirill Marinushkin kmarinushkin@birdec.tech
#include <linux/module.h> #include <sound/pcm_params.h>