Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1583147 > unrolled thread
| Started by | Joe Perches <joe@perches.com> |
|---|---|
| First post | 2017-02-17 08:20 +0100 |
| Last post | 2017-02-17 17:30 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 02/35] ARM: ep93xx: Convert remaining uses of pr_warning to pr_warn Joe Perches <joe@perches.com> - 2017-02-17 08:20 +0100
RE: [PATCH 02/35] ARM: ep93xx: Convert remaining uses of pr_warning to pr_warn Hartley Sweeten <HartleyS@visionengravers.com> - 2017-02-17 17:30 +0100
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-02-17 08:20 +0100 |
| Subject | [PATCH 02/35] ARM: ep93xx: Convert remaining uses of pr_warning to pr_warn |
| Message-ID | <tbKZJ-176-57@gated-at.bofh.it> |
To enable eventual removal of pr_warning.
This makes pr_warn use consistent for arch/arm
Prior to this patch, there were 2 uses of pr_warning and
405 uses of pr_warn in arch/arm
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/arm/mach-ep93xx/core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c
index c393b1b0310d..d6e907b6cc31 100644
--- a/arch/arm/mach-ep93xx/core.c
+++ b/arch/arm/mach-ep93xx/core.c
@@ -346,9 +346,9 @@ void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
* CMOS driver.
*/
if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
- pr_warning("sda != EEDAT, open drain has no effect\n");
+ pr_warn("sda != EEDAT, open drain has no effect\n");
if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
- pr_warning("scl != EECLK, open drain has no effect\n");
+ pr_warn("scl != EECLK, open drain has no effect\n");
__raw_writel((data->sda_is_open_drain << 1) |
(data->scl_is_open_drain << 0),
--
2.10.0.rc2.1.g053435c
[toc] | [next] | [standalone]
| From | Hartley Sweeten <HartleyS@visionengravers.com> |
|---|---|
| Date | 2017-02-17 17:30 +0100 |
| Subject | RE: [PATCH 02/35] ARM: ep93xx: Convert remaining uses of pr_warning to pr_warn |
| Message-ID | <tbTzX-6Dr-5@gated-at.bofh.it> |
| In reply to | #1583147 |
On Friday, February 17, 2017 12:11 AM, Joe Perches wrote:
> To enable eventual removal of pr_warning.
>
> This makes pr_warn use consistent for arch/arm
>
> Prior to this patch, there were 2 uses of pr_warning and
> 405 uses of pr_warn in arch/arm
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> arch/arm/mach-ep93xx/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-ep93xx/core.c b/arch/arm/mach-ep93xx/core.c
> index c393b1b0310d..d6e907b6cc31 100644
> --- a/arch/arm/mach-ep93xx/core.c
> +++ b/arch/arm/mach-ep93xx/core.c
> @@ -346,9 +346,9 @@ void __init ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
> * CMOS driver.
> */
> if (data->sda_is_open_drain && data->sda_pin != EP93XX_GPIO_LINE_EEDAT)
> - pr_warning("sda != EEDAT, open drain has no effect\n");
> + pr_warn("sda != EEDAT, open drain has no effect\n");
> if (data->scl_is_open_drain && data->scl_pin != EP93XX_GPIO_LINE_EECLK)
> - pr_warning("scl != EECLK, open drain has no effect\n");
> + pr_warn("scl != EECLK, open drain has no effect\n");
>
> __raw_writel((data->sda_is_open_drain << 1) |
> (data->scl_is_open_drain << 0),
For the ep93xx part:
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web