lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 25 Jul 2023 11:26:23 -0400
From:   Alex Deucher <alexdeucher@...il.com>
To:     wuyonggang001@...suo.com
Cc:     alexander.deucher@....com, dri-devel@...ts.freedesktop.org,
        amd-gfx@...ts.freedesktop.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] drm/radeon: Fix format error

Applied.  Thanks!

On Tue, Jul 25, 2023 at 3:19 AM <wuyonggang001@...suo.com> wrote:
>
> Fix the error(s):
>
> ERROR: space required before the open parenthesis '('
>
> Signed-off-by: Yonggang Wu <wuyonggang001@...suo.com>
> ---
>   drivers/gpu/drm/radeon/r300.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/radeon/r300.c
> b/drivers/gpu/drm/radeon/r300.c
> index 9c1a92fa2af6..25201b9a5aae 100644
> --- a/drivers/gpu/drm/radeon/r300.c
> +++ b/drivers/gpu/drm/radeon/r300.c
> @@ -249,7 +249,7 @@ void r300_ring_start(struct radeon_device *rdev,
> struct radeon_ring *ring)
>
>         /* Sub pixel 1/12 so we can have 4K rendering according to doc */
>         gb_tile_config = (R300_ENABLE_TILING | R300_TILE_SIZE_16);
> -       switch(rdev->num_gb_pipes) {
> +       switch (rdev->num_gb_pipes) {
>         case 2:
>                 gb_tile_config |= R300_PIPE_COUNT_R300;
>                 break;
> @@ -638,7 +638,7 @@ static int r300_packet0_check(struct
> radeon_cs_parser *p,
>         track = (struct r100_cs_track *)p->track;
>         idx_value = radeon_get_ib_value(p, idx);
>
> -       switch(reg) {
> +       switch (reg) {
>         case AVIVO_D1MODE_VLINE_START_END:
>         case RADEON_CRTC_GUI_TRIG_VLINE:
>                 r = r100_cs_packet_parse_vline(p);
> @@ -1180,7 +1180,7 @@ static int r300_packet3_check(struct
> radeon_cs_parser *p,
>         ib = p->ib.ptr;
>         idx = pkt->idx + 1;
>         track = (struct r100_cs_track *)p->track;
> -       switch(pkt->opcode) {
> +       switch (pkt->opcode) {
>         case PACKET3_3D_LOAD_VBPNTR:
>                 r = r100_packet3_load_vbpntr(p, pkt, idx);
>                 if (r)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ