Skip to content

Commit 2fde193

Browse files
committed
m68k: sun3: Remove unused orig_baddr in free_baddr()
When building with W=1: arch/m68k/sun3/sun3dvma.c: In function ‘free_baddr’: arch/m68k/sun3/sun3dvma.c:208:23: warning: variable ‘orig_baddr’ set but not used [-Wunused-but-set-variable] 196 | unsigned long orig_baddr; | ^~~~~~~~~~ Fix this by removing the unused variable and assignment, which were futile since their introduction in v2.4.5.2. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/c705b6186241dfe9a5bdcb71720b8697fa5c801f.1694613528.git.geert@linux-m68k.org
1 parent a428664 commit 2fde193

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

arch/m68k/sun3/sun3dvma.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,7 @@ static inline int free_baddr(unsigned long baddr)
193193
unsigned long len;
194194
struct hole *hole;
195195
struct list_head *cur;
196-
unsigned long orig_baddr;
197196

198-
orig_baddr = baddr;
199197
len = dvma_entry_use(baddr);
200198
dvma_entry_use(baddr) = 0;
201199
baddr &= DVMA_PAGE_MASK;

0 commit comments

Comments
 (0)