Strip trailing whitespace from source files

Performed with: `git ls-files | xargs perl -i -p -e 's{[ \t]+$}{}'`

`git diff -w` & `git diff -b` show no diffs from this change

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-r128/-/merge_requests/19>
This commit is contained in:
Alan Coopersmith
2025-08-20 16:35:39 -07:00
committed by Enrico Weigelt, metux IT consult
parent 19edee8704
commit b7f5ef0c68
3 changed files with 5 additions and 5 deletions

4
.gitignore vendored
View File

@@ -71,8 +71,8 @@ core
*.tar.bz2 *.tar.bz2
*.tar.gz *.tar.gz
# #
# Add & Override patterns for xf86-video-r128 # Add & Override patterns for xf86-video-r128
# #
# Edit the following section as needed # Edit the following section as needed
# For example, !report.pc overrides *.pc. See 'man gitignore' # For example, !report.pc overrides *.pc. See 'man gitignore'
# #

View File

@@ -31,7 +31,7 @@
enum region_type { enum region_type {
REGION_MEM, REGION_MEM,
REGION_IO REGION_IO
}; };
#include <stdint.h> #include <stdint.h>

View File

@@ -875,8 +875,8 @@ static Bool R128PreInitConfig(ScrnInfoPtr pScrn)
case PCI_CHIP_RAGE128LE: case PCI_CHIP_RAGE128LE:
case PCI_CHIP_RAGE128LF: case PCI_CHIP_RAGE128LF:
case PCI_CHIP_RAGE128MF: case PCI_CHIP_RAGE128MF:
case PCI_CHIP_RAGE128ML: case PCI_CHIP_RAGE128ML:
info->HasPanelRegs = TRUE; info->HasPanelRegs = TRUE;
/* which chips support dualhead? */ /* which chips support dualhead? */
pR128Ent->HasCRTC2 = TRUE; pR128Ent->HasCRTC2 = TRUE;
break; break;