s3_pci.c (9199c09a159c4e3e98c212d4eec1edc5252d9e33) | s3_pci.c (aa3d547d095ff07fdc39ffc5ae4c371844b504ab) |
---|---|
1/*- 2 * Copyright (c) 2000 Alcove - Nicolas Souchu <nsouch@freebsd.org> 3 * All rights reserved. 4 * 5 * Code based on Peter Horton <pdh@colonel-panic.com> patch. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 374 unchanged lines hidden (view full) --- 383 384static int 385s3lfb_blank_display(video_adapter_t *adp, int mode) 386{ 387 return (*prevvidsw->blank_display)(adp, mode); 388} 389 390static int | 1/*- 2 * Copyright (c) 2000 Alcove - Nicolas Souchu <nsouch@freebsd.org> 3 * All rights reserved. 4 * 5 * Code based on Peter Horton <pdh@colonel-panic.com> patch. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 374 unchanged lines hidden (view full) --- 383 384static int 385s3lfb_blank_display(video_adapter_t *adp, int mode) 386{ 387 return (*prevvidsw->blank_display)(adp, mode); 388} 389 390static int |
391s3lfb_mmap(video_adapter_t *adp, vm_ooffset_t offset, vm_paddr_t *paddr, 392 int prot, vm_memattr_t *memattr) | 391s3lfb_mmap(video_adapter_t *adp, vm_offset_t offset, vm_paddr_t *paddr, 392 int prot) |
393{ | 393{ |
394 return (*prevvidsw->mmap)(adp, offset, paddr, prot, memattr); | 394 return (*prevvidsw->mmap)(adp, offset, paddr, prot); |
395} 396 397static int 398s3lfb_clear(video_adapter_t *adp) 399{ 400 return (*prevvidsw->clear)(adp); 401} 402 --- 165 unchanged lines hidden --- | 395} 396 397static int 398s3lfb_clear(video_adapter_t *adp) 399{ 400 return (*prevvidsw->clear)(adp); 401} 402 --- 165 unchanged lines hidden --- |