2020-01-21 08:49:59

by Alex Shi

[permalink] [raw]
Subject: [PATCH] agp/via: remove unused current_size

No one care the current_size, so don't bother to get current_size.

Signed-off-by: Alex Shi <[email protected]>
Cc: David Airlie <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: [email protected]
---
drivers/char/agp/via-agp.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/drivers/char/agp/via-agp.c b/drivers/char/agp/via-agp.c
index 87a92a044570..dc594f4eca38 100644
--- a/drivers/char/agp/via-agp.c
+++ b/drivers/char/agp/via-agp.c
@@ -128,9 +128,6 @@ static int via_fetch_size_agp3(void)
static int via_configure_agp3(void)
{
u32 temp;
- struct aper_size_info_16 *current_size;
-
- current_size = A_SIZE_16(agp_bridge->current_size);

/* address to map to */
agp_bridge->gart_bus_addr = pci_bus_address(agp_bridge->dev,
--
1.8.3.1


2020-01-21 09:10:03

by Arnd Bergmann

[permalink] [raw]
Subject: Re: [PATCH] agp/via: remove unused current_size

On Tue, Jan 21, 2020 at 9:48 AM Alex Shi <[email protected]> wrote:
>
> No one care the current_size, so don't bother to get current_size.
>
> Signed-off-by: Alex Shi <[email protected]>
> Cc: David Airlie <[email protected]>
> Cc: Arnd Bergmann <[email protected]>
> Cc: Greg Kroah-Hartman <[email protected]>
> Cc: [email protected]

Acked-by: Arnd Bergmann <[email protected]>