commit 8952dfd716fa0837d3ed0c66570537f279c6695d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Aug 8 17:41:08 2025 -0700

    xf86-video-ast 1.2.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 88a2e1c91ff7dbf73628c4f637344d1aed159222
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 15:34:32 2025 -0700

    headers: add header guards to files that don't have them yet
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit e2a6afef3dfab1a9e01c2d23152a16a0851b9e25
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 14:17:03 2025 -0700

    ASTSetMode: Handle -Wmaybe-uninitialized warnings
    
    In function ‘vSetStdReg’,
        inlined from ‘ASTSetMode’ at ast_mode.c:522:9:
    ast_mode.c:724:10: warning: ‘vgamodeinfo.pStdTableEntry’ may be used
     uninitialized [-Wmaybe-uninitialized]
      724 |     jReg = pStdModePtr->MISC;
          |     ~~~~~^~~~~~~~~~~~~~~~~~~
    ast_mode.c: In function ‘ASTSetMode’:
    ast_mode.c:496:21: note: ‘vgamodeinfo.pStdTableEntry’ was declared here
      496 |     VBIOS_MODE_INFO vgamodeinfo;
          |                     ^~~~~~~~~~~
    In function ‘vSetCRTCReg’,
        inlined from ‘ASTSetMode’ at ast_mode.c:523:9:
    ast_mode.c:780:70: warning: ‘vgamodeinfo.pEnhTableEntry’ may be used
     uninitialized [-Wmaybe-uninitialized]
      780 |     if ((pAST->jChipType == AST2500) && (pVGAModeInfo->pEnhTableEntry->Flags & AST2500PreCatchCRT))
          |                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
    ast_mode.c: In function ‘ASTSetMode’:
    ast_mode.c:496:21: note: ‘vgamodeinfo.pEnhTableEntry’ was declared here
      496 |     VBIOS_MODE_INFO vgamodeinfo;
          |                     ^~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 76b105dac4e022fce6f156499dcfc0eccfacee9b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 14:09:37 2025 -0700

    ASTDoDDC: Handle 25 -Wmaybe-uninitialized warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 63df979a02f27a15c2813738dd2b228a2a061f05
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 13:58:38 2025 -0700

    bGetAST1000VGAModeInfo: Fix misleading indentation
    
    ast_mode.c: In function ‘bGetAST1000VGAModeInfo’:
    ast_mode.c:647:9: warning: this ‘if’ clause does not guard...
     [-Wmisleading-indentation]
      647 |         if (loop->ulRefreshRate <= ulRefreshRate
          |         ^~
    ast_mode.c:650:25: note: ...this statement, but the latter is
     misleadingly indented as if it were guarded by the ‘if’
      650 |                         loop++;
          |                         ^~~~
    
    Fixes: 77e7ac3 ("use same search mode criteria with ast drm driver")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit e4e349bcce1e7191cfffd8702340914926a0524c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 13:53:34 2025 -0700

    ASTProbe: stop leaking memory returned by xf86GetEntityInfo()
    
    Fixes: 7ce3a2b ("Initial code release from ASPEED Technology Inc.")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 62e4ce40c372985ab8df6c532b9528145e7c1d19
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 13:20:10 2025 -0700

    Quiet -Wredundant-decls from xorg/os.h fallbacks for new libc functions
    
    The Xorg headers provide their own versions of strlcat, strlcpy, and
    timingsafe_memcmp for platforms that don't have them in libc yet, but
    rely on configure to set HAVE_* defines to determine if they should be
    defined in the headers.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 937f6f332eaf38f38bd96b28add5016eeda4b894
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 14:59:08 2025 -0700

    CBRTest*: drop unused variable mmiobase
    
    ast_vgatool.c: In function ‘CBRTest_AST2150’:
    ast_vgatool.c:1273:10: warning: variable ‘mmiobase’ set but not used
     [-Wunused-but-set-variable]
     1273 |   UCHAR *mmiobase;
          |          ^~~~~~~~
    ast_vgatool.c: In function ‘CBRTest’:
    ast_vgatool.c:1755:10: warning: variable ‘mmiobase’ set but not used
     [-Wunused-but-set-variable]
     1755 |   UCHAR *mmiobase;
          |          ^~~~~~~~
    ast_vgatool.c: In function ‘CBRTest2’:
    ast_vgatool.c:1803:10: warning: variable ‘mmiobase’ set but not used
     [-Wunused-but-set-variable]
     1803 |   UCHAR *mmiobase;
          |          ^~~~~~~~
    
    Fixes: 666abcb ("xf86-video-ast-0.93.09")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 7ff9603110df1c0a24c6eb195bcd8e28d6eee925
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 13:56:00 2025 -0700

    ASTStopVideo: drop unused variable pAST
    
    ast_driver.c: In function ‘ASTStopVideo’:
    ast_driver.c:1800:12: warning: unused variable ‘pAST’ [-Wunused-variable]
     1800 |     ASTPtr pAST = ASTPTR(pScrn);
          |            ^~~~
    
    Fixes: b4466da ("xf86-video-ast-0.92.02")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 6ff1c964abe02bbc4649118991fe5065f26a4711
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 12:25:24 2025 -0700

    vInitAST2300DRAMReg: drop unused variable i
    
    ast_vgatool.c: In function ‘vInitAST2300DRAMReg’:
    ast_vgatool.c:2887:11: warning: unused variable ‘i’ [-Wunused-variable]
     2887 |     ULONG i, ulTemp;
          |           ^
    
    Fixes: b4466da ("xf86-video-ast-0.92.02")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 30720f708cf224870efb62d03d00e4c52e1b6a75
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 12:18:35 2025 -0700

    CBRDLL2: drop unused variable data2
    
    ast_vgatool.c: In function 'CBRDLL2':
    ast_vgatool.c:2076:43: warning: unused variable ‘data2’ [-Wunused-variable]
     2076 |   ULONG dllmin[2], dllmax[2], dlli, data, data2, passcnt, retry=0;
          |                                           ^~~~~
    
    Fixes: 1e3dbbd ("Modify for DRAM Initial Settings")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 570780813d39cfaa6cea32511c09239057d60d17
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 12:15:26 2025 -0700

    finetuneDQSI: drop unused variable cnt
    
    ast_vgatool.c: In function 'finetuneDQSI':
    ast_vgatool.c:1974:30: warning: unused variable ‘cnt’ [-Wunused-variable]
     1974 |   ULONG dlli, dqsip, dqidly, cnt;
          |                              ^~~
    
    Fixes: 1e3dbbd ("Modify for DRAM Initial Settings")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 80c298e310deee85d5bd66c8392dc550880991de
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 12:09:28 2025 -0700

    vInitChrontelReg: drop unused variable pEnhModePtr
    
    ast_mode.c: In function 'vInitChrontelReg':
    ast_mode.c:1287:28: warning: unused variable 'pEnhModePtr' [-Wunused-variable]
     1287 |     PVBIOS_ENHTABLE_STRUCT pEnhModePtr = pVGAModeInfo->pEnhTableEntry;
          |                            ^~~~~~~~~~~
    
    Fixes: 9e8d8489922d8b647b28de06045e8fddf0ffc62f
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit 68c9813e448bd6aa9cb4c46e31fa4fe0d0d59e95
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 27 11:26:59 2025 -0700

    ASTSaveScreen: Fix build on SPARC
    
    ast_driver.c: In function ‘ASTSaveScreen’:
    ast_driver.c:1257:1: error: no return statement in function returning
     non-void [-Werror=return-type]
     1257 | }
          | ^
    
    Fixes: dc971ee ("fix segmentation fault issue if enable XEN")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/15>

commit e86afcc2d1bf1e3aa92fd1f73f21384c4d77c3de
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 5 11:08:08 2025 -0800

    xf86-video-ast 1.2.0
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 426c80e9be7e69981ae50015f9a6f908f8768ecd
Author: Semenov Herman <GermanAizek@yandex.ru>
Date:   Sun Oct 6 19:09:16 2024 +0300

    Fixed disabled RAMDAC for A1 reg
    
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/12>

commit db56de34bdf70f1904dba50d98774aaa950a2ca5
Author: Enrico Weigelt, metux IT consult <info@metux.net>
Date:   Thu May 23 19:34:03 2024 +0200

    drop compat with ancient xservers
    
    We're relying on 1.18 now, so drop compat with older ones.
    
    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/11>

commit 309e8bf6ca1620eee14fb0b3c7a17fca325e548c
Author: Enrico Weigelt, metux IT consult <info@metux.net>
Date:   Wed May 22 21:00:06 2024 +0200

    drop obsolete check for REGION_NULL
    
    Our minimal version is known to have it, so no check needed anymore.
    
    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/11>

commit 9f932c7d5e79751082edec101e090732b2ea7fcd
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun May 12 15:55:00 2024 -0700

    Raise minimum supported Xserver version to 1.18 (ABI_VIDEODRV_VERSION 20.0)
    
    Already effectively required by use of XNFcallocarray() introduced in
    xorg/xserver@b96dc999 - xserver-1.18.0, released in Nov. 2015.
    
    Allows dropping remnants of code for XAA and pre-pciaccess X servers
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/9>

commit 4b72faa32244112049d05c925637cae0ac9aac82
Author: Enrico Weigelt, metux IT consult <info@metux.net>
Date:   Wed May 8 14:32:06 2024 +0200

    use XNFcallocarray() instead of xnfcalloc macro
    
    xnfcalloc is just an alias for XNFcallocarray() that doesn't seem to serve
    any practical purpose, so it can go away once all drivers stopped using it.
    
    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
    Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-ast/-/merge_requests/8>

commit 55a72385a443d7107aa378651c4a5631fe837da6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 5 18:56:25 2024 -0800

    Handle a -Wformat warning
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2352780cd7a19bc9562b33676d2598e522e37def
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 5 18:53:48 2024 -0800

    Handle 2 -Wdeclaration-after-statement warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 70582d8282ce8ff4a604ac337a047da3e3cf6230
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 5 18:47:48 2024 -0800

    Handle 12 -Wmissing-prototypes warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 338ec0a2170ea3e631cd0e7a997e4fcc28b0f646
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 5 18:45:12 2024 -0800

    Add X.Org's standard C warning flags to AM_CFLAGS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3262c6e82f3697ba9191c99000dd3a1303f42c70
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 5 18:42:31 2024 -0800

    configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
    
    AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
    so it's time to rely on it.
    
    Clears autoconf warnings:
    configure.ac:44: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
    configure.ac:44: You should run autoupdate.
    aclocal.m4:3515: AC_PROG_LIBTOOL is expanded from...
    configure.ac:44: the top level
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6558ea686df764fe21e76eaf3a6c8bd398800283
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Oct 1 11:17:31 2023 -0700

    gitlab CI: ensure libtool is installed in build container
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 7b8c415f4204a4b8820aefe18083b21e9f363c13
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Dec 8 16:13:56 2022 -0800

    xf86-video-ast 1.1.6
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4bcb8260871c339dc6c618d108cfbe2908bda7af
Author: Elyes HAOUAS <ehaouas@noos.fr>
Date:   Wed Nov 16 11:35:32 2022 +0000

    Res1280x800Table: Fix a typo on hexa value.
    
    Replace "... AST2500PreCatchCRT), 60, 2, 35 }"
    with "... AST2500PreCatchCRT), 60, 2, 0x35 }"

commit 0e0fd56d9f3f9e4a9d4dfde18f01c5578113559c
Author: Daniel O'Connor <darius@dons.net.au>
Date:   Fri Sep 18 00:00:28 2020 +0930

    Do not hang if P2A is disabled, using sensible defaults instead.
    
    Based on Linux DRM https://patchwork.kernel.org/patch/9578793/

commit 773f703d92714edb80458693bf9bf42fc0b77db4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 10:50:11 2022 -0700

    ast_vgatool: Fix indentation in ASTGetScratchOptions()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 19cf45e2a4699c950d08cc7aa3e4ccfe76e276d6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 10:42:37 2022 -0700

    ast_vgatool: Fix -Wold-style-declaration warning
    
    ast_vgatool.c:3400:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration]
     void static vGetDefaultSettings(ScrnInfoPtr pScrn)
     ^~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 065ed43c44b50231fa2ac9d406727d5149cac27f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 10:39:08 2022 -0700

    ast_mode: Eliminate unused DAC_TEXT & DAC_EGA arrays
    
    At top level:
    ast_mode.c:389:23: warning: ‘DAC_EGA’ defined but not used [-Wunused-variable]
     static VBIOS_DAC_INFO DAC_EGA[] = {
                           ^~~~~~~
    ast_mode.c:370:23: warning: ‘DAC_TEXT’ defined but not used [-Wunused-variable]
     static VBIOS_DAC_INFO DAC_TEXT[] = {
                           ^~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f9dcbd53e7c63918b4798d961b56d28e55c9787f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 10:25:25 2022 -0700

    WriteAST1180SOC: Add _X_UNUSED attribute to temp variable
    
    Clears 67 out of 84 warnings of the form:
    
    In file included from ast_cursor.c:53:0:
    ast_cursor.c: In function ‘ASTLoadCursorImage’:
    ast_vgatool.h:149:15: warning: variable ‘temp’ set but not used [-Wunused-but-set-variable]
             ULONG temp; \
                   ^
    ast_cursor.c:293:9: note: in expansion of macro ‘WriteAST1180SOC’
             WriteAST1180SOC(AST1180_GFX_BASE+AST1180_HWC1_PATTERNADDR, ulPatternAddr);
             ^~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8026dbf57d657a2ff1d6bd6037082c11682f49bb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Jul 28 17:30:21 2022 -0700

    gitlab CI: stop requiring Signed-off-by in commits
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 7916e2a65c53075434b4242dcafd800a5910a7e8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jan 17 15:25:47 2022 -0800

    gitlab CI: add a basic build test
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b90cfb94d68f156767d0eec818c9a2aab487422e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jan 17 15:25:05 2022 -0800

    Fix spelling/wording issues
    
    Found by using:
        codespell --builtin clear,rare,usage,informal,code,names
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0b9cdc95944ba99c9ccd839b68e402915a68be60
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jan 17 15:19:50 2022 -0800

    Build xz tarballs instead of bzip2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 72e3f2e3e88655066d9687e309ca95c5b7d5e0ce
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 25 13:06:17 2018 -0800

    Update configure.ac bug URL for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a87ba3607d75a0b8f38ea9a91262427cd706ed86
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 18 12:14:44 2018 -0800

    Update README for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1dba6ba5a792e0052ff21c2781dbff74dc33e621
Author: Mihail Konev <k.mvc@ya.ru>
Date:   Thu Jan 26 14:00:22 2017 +1000

    autogen: add default patch prefix
    
    Signed-off-by: Mihail Konev <k.mvc@ya.ru>

commit df8a9c009c6a351fbd3e461aa269140db9f48807
Author: Emil Velikov <emil.l.velikov@gmail.com>
Date:   Mon Mar 9 12:00:52 2015 +0000

    autogen.sh: use quoted string variables
    
    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    fall-outs, when they contain space.
    
    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 1eaafc834ad56b503536b4a913d8c3078b5c756e
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue Jan 24 10:32:07 2017 +1000

    autogen.sh: use exec instead of waiting for configure to finish
    
    Syncs the invocation of configure with the one from the server.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>

commit d6253bc1242ece1054c449745bd3425ccbecf8fc
Author: Colin Walters <walters@verbum.org>
Date:   Wed Jan 4 17:37:06 2012 -0500

    autogen.sh: Implement GNOME Build API
    
    http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 9dc95d058b1efe10c91018c91415e273d7f5d225
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Jan 26 11:19:23 2017 +1000

    configure: Drop AM_MAINTAINER_MODE
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 39e80895acb4b818ecc15af51a68178562ebb41d
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Aug 19 09:21:05 2015 +0800

    Bump Version to 1.1.5

commit 74281c4ce201ff04a6672c703d09ed28286f1801
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 14 15:30:00 2015 +0800

    Support AST2500

commit 9918d6f69ac51d9d27b074e3e490783acda68dca
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 14 10:11:23 2015 +0800

    Fixed Failed to Init when ASPEED Graphics is Secondary

commit e545ab905ea120014558d6f1733d87ffde5d5d71
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Aug 13 15:54:15 2015 +0800

    Fixed Transient Noise While System Resume from Hibernate

commit 77e7ac37c6031551f7ad355dc94c4176df4956aa
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Aug 13 15:21:57 2015 +0800

    use same search mode criteria with ast drm driver

commit 4f404aa29eea5707cfdfe3dc2c762bd46063dfec
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Mon Aug 18 05:35:48 2014 +0800

    Use proper type.
    
    Two other places in this file already use uint32_t when passing
    it to PCI_READ_LONG.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>

commit d531cac475980908ea52309846221a974b8e7efd
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 8 16:51:07 2014 +0800

    Bump Version to 1.0.1

commit 85be2b8ecd69ebf24334ddfb1822bbbf0b41376a
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 8 16:36:04 2014 +0800

    Update DP501FW Code

commit d0d76062f781896793bc51565e2dd5e4be047319
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 8 16:04:22 2014 +0800

     Fixed 1600x900 cannot display properly

commit 94640946015eb6611ff9bf8daf49e10479351fac
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 17:09:42 2014 +0200

    Add _AST_H_ define to ast.h
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 364364910d1cc9be67120b8d28ab79abd82dbf04
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 17:08:56 2014 +0200

    Move firmware for DP501 to a separate file
    
    This makes ast_vgatools.c much more readable.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 5bdd2cac0b8db58ab442375f5c9e9b4349f39c02
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 15:35:43 2014 +0200

    Fix ABI version conflict in xf86UnclaimPciSlot()
    
    xf86UnclaimPciSlot() received a GDevPtr as 2nd argument with
    ABI_VIDEODRV_VERSION 13.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 06245e228319c63a48ddd0313cf39d9c8e93cfc7
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 15:10:20 2014 +0200

    Fix typo
    
    Chontel -> Chrontel
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 72a9703ae45fda895b658a97d125d8f62ff664aa
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 14:31:39 2014 +0200

    Include local headers only when needed
    
    Move inclusion of local headers from ast.h to the individual
    files. Include only those headers which are needed.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 8fb9e1008473bc91b036dba5e9fb85f12bad7753
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 14:09:10 2014 +0200

    Clean up namespace in ast_tool.c
    
    - Made sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Placed declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 00fa895306c14bc320c9eb47368b20e6738ba430
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 14:05:17 2014 +0200

    Clean up namespace in ast_accel.c
    
    - Made sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Placed declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit a70eac7e6e5b23fa5cc140c29880a4abdf54adeb
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 13:57:25 2014 +0200

    Clean up namespace in ast_mode.c
    
    - Make local functions static
      This sometimes helps the compiler to optimize.
    - Made sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Placed declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 28f815fe8b56138f32a98e3712b61e930b5e892e
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 13:47:39 2014 +0200

    Clean up namespace in ast_cursor.c
    
    - Make sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Place declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit f6a2ba02b2ac8c8a8b66902dd3ac5324971a43fe
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 12:21:57 2014 +0200

    Clean up namespace in ast_2dtool.c
    
    - Make local functions static
      This sometimes helps the compiler to optimize.
    - Make sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Place declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit a833ba0b6cd6b6a449ddfed0b4753bc6f8dcb305
Author: Egbert Eich <eich@suse.de>
Date:   Thu Apr 24 17:25:03 2014 +0200

    Clean up namespace in ast_vgatools.c
    
    - Make local functions static
      This sometimes helps the compiler to optimize.
    - Make sure exported functions have 'AST' in their name.
      This avoids name space conflicts with the server or other drivers.
    - Place declaration of exported functions in a header file.
      This ensures that changes to the function type or arguments are followed
      thru everywhere.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit e87938b319fd864f3f65527240d45a8ae234193f
Author: Egbert Eich <eich@suse.de>
Date:   Thu Apr 24 17:27:30 2014 +0200

    Remove unused functions from ast_vgatools.c
    
    SetI2CReg(), GetI2CReg()
    wait_fw_ready(), read_data() and clear_cmd() are used nowhere
    currently.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 7c7fc069b7a50813c3ff88706e5616418f9ec76b
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 12:37:49 2014 +0200

    Fix compiler warnings: add DrawablePtr argument to ASTPutImage
    
    An archaeological survey revealed that this ABI change took place
    in 2006 already.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 0ddf408f17cee58d643f4fd2f683f6530f5027af
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 11:41:07 2014 +0200

    Fix compiler warnings: get rid of deprecated IOADDRESS
    
    For newer ABI versions IOADDRESS can be replaced by int
    which is big enough to hold an PIO offset.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit e855e6806ea94a2296076924ee9460b5081bd6da
Author: Egbert Eich <eich@suse.de>
Date:   Tue Apr 22 11:38:10 2014 +0200

    Fix compiler warnings: get rid if xf86PciInfo.h
    
    xf86PciInfo.h is not needed in the ASpeed driver at all.
    
    Signed-off-by: Egbert Eich <eich@suse.de>
    Acked-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit ed39dc7c3cff7aa248fc3c8d697400371313745c
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Mar 19 09:51:45 2014 +0800

    Bump version to 0.99.9

commit 0bbae30ffc6a18dd5335380c9808ce3f69ecb7cf
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Mar 19 09:48:51 2014 +0800

    Support DP501 Display Output

commit b308902b4a14de08e6d7077c70060a15e87b4fd8
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Mar 19 09:12:26 2014 +0800

    Support AST2400

commit f4fa79c12c14854d786dc0427f5a40061e006495
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Tue Mar 18 12:00:12 2014 +0100

    Fixed driver name in error message about KMS active.
    
    Seems some code came from cirrus driver by copy & paste. Fixed
    this in error message about device already in use by KMS module.
    
    Signed-off-by: Stefan Dirsch <sndirsch@suse.de>
    Reviewed-by: Dave Airlie <airlied@redhat.com>

commit e54f2fdb7a44ffb40b3b4c2266843c38223c1f07
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Tue Mar 18 11:58:39 2014 +0100

    ast: fix falling back after kernel check
    
    if we find a kernel driver the code leave the pci slot claimed which
    stops us falling back. unclaim the pci slot. patch inspired by
    correspondant patch for cirrus driver by Dave Airlie.
    
    Signed-off-by: Stefan Dirsch <sndirsch@suse.de>
    Reviewed-by: Dave Airlie <airlied@redhat.com>

commit a40c98a4838bdb5793922a13d980bd370427bd2d
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Tue Mar 18 11:56:19 2014 +0100

    Revert "Support AST2400"
    
    This reverts commit 7f24775a468066601a79beaffb4efa5a36c5ed59.

commit 99e07e0341bfb44203bbd27a9d357a74999d5af9
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Tue Mar 18 11:56:16 2014 +0100

    Revert " Support DP501 Output"
    
    This reverts commit 2a2ecb551781d89e8e2a3123bb7d5b20ee807953.

commit ef37427b08d33d0a3d9d42ac92d02bf7156f2615
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Tue Mar 18 11:56:14 2014 +0100

    Revert " Bump version to 0.99.9"
    
    This reverts commit 9c5c9dfe81732eeaadbb3e6ee81b348364ba478b.

commit 9c5c9dfe81732eeaadbb3e6ee81b348364ba478b
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Mar 14 23:01:01 2014 +0800

     Bump version to 0.99.9

commit 2a2ecb551781d89e8e2a3123bb7d5b20ee807953
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Mar 14 22:52:11 2014 +0800

     Support DP501 Output

commit 7f24775a468066601a79beaffb4efa5a36c5ed59
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Mar 14 18:23:04 2014 +0800

    Support AST2400

commit f7913400cd902aeced5e0fb994bd3c11c90a49b9
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Sun Aug 18 19:49:06 2013 +0800

    Bump version to 0.98.0

commit c1580a0f4625155514cd427a4eb9aa972b7484bb
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Aug 7 14:49:47 2013 +0800

    Support ShadowFB if no XAA

commit 2e57123b7c68868d0b1fe1d591f6236a23c4f3aa
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Aug 7 13:39:29 2013 +0800

    Fixed Display Abnormal Issue with GOP Driver

commit 9ab60c6383055569874cff7f8c19973ef78bf0f9
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Mon Aug 5 23:46:47 2013 +0800

    Fixed S3 Resume Failed Issue

commit 1e3dbbd8e96a12f38bb558f58bf43735292ccc4e
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 2 00:12:11 2013 +0800

    Modify for DRAM Initial Settings

commit 996fdaed696c989fdafe12dc18e90639dfc96f87
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jul 31 23:17:50 2013 -0700

    Cleanup leading/trailing whitespace in source files
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 15b22ad50df0dff78a2db9fb4c536ab7faf92f07
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Aug 1 21:47:29 2013 +0800

    Support 1360x768 and 1600x900 Resolutions

commit 414341bd08353c4711cc9c39013ad5023a023738
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Sun Jun 2 23:36:52 2013 +0200

    Use uint32_t for a variable that's passed to a function expecting a uint32_t.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0833e0086b9712b1c29571919899d5d17fea8382
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Sep 25 08:54:33 2012 -0400

    Remove mibstore.h
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 358ef4a53e582a2176a163356c7754faf3192270
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Aug 15 13:22:14 2012 -0400

    Don't bother to include vbe.h
    
    This driver no longer uses VBE, so this can go.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit e4268d2775c95e03e0d319cb937522bfb3bab61d
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 17 16:05:09 2012 +1000

    xf86-video-ast: bump to version 0.97.0
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 138d1ea01298aedbe414ecc48374e433d6960010
Author: Dave Airlie <airlied@gmail.com>
Date:   Fri Jul 13 14:33:47 2012 +1000

    ast: deal with XAA removal.
    
    This deals with the removal of XAA from the server, should
    fix tinderbox.
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit eafaa2666fa43d6b06bec013feb254ea92759406
Author: Dave Airlie <airlied@redhat.com>
Date:   Mon Jul 2 12:01:46 2012 +0100

    ast: bump to 0.96.0 for release
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit 1af03ed39b6692231544e5c7b8325fa8d70c728d
Author: Dave Airlie <airlied@redhat.com>
Date:   Wed Jun 6 12:00:14 2012 +0100

    ast: port to new compat API.
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit f981caeb7ebf53fea9d8f852edea6605d44d975e
Author: Dave Airlie <airlied@redhat.com>
Date:   Thu May 17 10:27:50 2012 +0100

    ast: don't bind to device if there is a loaded PCI driver.
    
    This stops this driver being used on top of the kernel modesetting
    driver, so fallback works correctly.
    
    Signed-off-by: Dave Airlie <airlied@redhat.com>

commit c954c0874b8f776fae7a38cb2ac7f4a311f90980
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Apr 4 04:21:55 2012 +0800

    revert the code changed by Adam Jackson

commit dc971ee25afb462f871ba1fb93f3bc996540ef51
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Tue Apr 3 18:00:50 2012 +0800

    fix segmentation fault issue if enable XEN

commit 7a455573ff292819be90e086fbc1198d05a04910
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Apr 3 10:01:53 2012 +0100

    Revert "xf86-video-ast-ast 0.95.00"
    
    This reverts commit 6f0b593c273979bc4a83e845e037ab35d4565b72.

commit aba57046a9a38698a718629f0fde9d9a8dcc9012
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Apr 3 10:01:44 2012 +0100

    Revert "xf86-video-ast-0.95.0"
    
    This reverts commit 20c578001a8024d3478a009c2b110056f0ddd1ca.

commit 20c578001a8024d3478a009c2b110056f0ddd1ca
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Tue Apr 3 15:01:23 2012 +0800

    xf86-video-ast-0.95.0

commit 6f0b593c273979bc4a83e845e037ab35d4565b72
Author: root <root@localhost.localdomain>
Date:   Tue Apr 3 19:58:42 2012 +0800

    xf86-video-ast-ast 0.95.00

commit 18c8547d4afdeb87120e2af7c0563f76c27dcdfe
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Mar 23 18:40:42 2012 -0700

    xf86-video-ast 0.93.10
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d07efd4f80754d82540ebdaa7c2a062e68f229b9
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Dec 19 17:45:12 2011 -0500

    Fix for new vgaHW ABI
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit d5f706dc5a2b6665e2b57a547781f2b9364d4d83
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Dec 19 16:15:49 2011 -0500

    Make failure to XAA non-fatal
    
    No shadowfb support in this driver yet.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 706f4931bfa8ade57b3fca119fd788fc9163dd43
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Nov 17 15:51:42 2011 -0500

    Check ABI major not encoded ABI
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 4a7eda24050b42072c77d527257609e743e8dc78
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Nov 16 15:09:40 2011 -0500

    Adapt to domain changes in videoabi 12
    
    This is a blind change, I don't have this hardware handy to test with.
    It probably wants the same new API that tdfx wants.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 59d994f46218b5909725ce690cd3fef089a88ba5
Author: root <root@localhost.localdomain>
Date:   Fri Jul 15 14:08:13 2011 +0800

    fixed bug #39235

commit 666abcb51ac69161a548055ee41274f2131551ca
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Jul 13 16:20:31 2011 +0800

    xf86-video-ast-0.93.09

commit acec72c6a52879752b080a4f0e644e70c6a2aded
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Nov 11 11:54:26 2010 +0800

    xf86-video-ast-v.0.92.02

commit 143f004a40ed0f95d9cbc30d38b829af00541f6c
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Nov 10 15:01:36 2010 +0800

    xf86-video-ast-0.92.02

commit b4466dad5d60c4a79b775c6e6de989563f7eac45
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Wed Nov 10 14:08:55 2010 +0800

    xf86-video-ast-0.92.02

commit e387e54fd65b7db984975bf7a97cf30b5f1b9b9e
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Aug 10 10:44:18 2010 -0400

    xf86-video-ast 0.91.10
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 6196d848a0b12d7e8f7aae0374d53072c69546a6
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 16:49:04 2010 -0400

    config: add comments for main statements

commit f224e3227f889fb057b17b3358b486b24613bf44
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 16:07:00 2010 -0400

    config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 4064b3e502ee35cf352071dfdf4410af97f28d81
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 14:37:41 2010 -0400

    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 2ce1ffb14d25cf61964e79ec53ab0aa837190f9b
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 14:05:22 2010 -0400

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 2072a55edcf15b610383a48b1e542b1778b4add4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jul 21 09:27:42 2010 -0400

    config: complete AC_INIT m4 quoting
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 2550adc89eedea904472a0106d4efa74d8664be7
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 21:44:57 2010 -0400

    config: remove unrequired AC_SUBST([XORG_CFLAGS])
    
    This macro is called by PKG_CHECK_MODULES
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 31fd1c66b5bfdc0f6e587d01c9f61d8177f45b49
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 20:24:42 2010 -0400

    config: remove unrequired AC_HEADER_STDC
    
    Autoconf says:
    "This macro is obsolescent, as current systems have conforming
    header files. New programs need not use this macro".
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 768c6328001df7d702dff693b5610f5cc01f810d
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 19:41:30 2010 -0400

    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
    
    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
    AC_PROG_C_C99. This sets gcc with -std=gnu99.
    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 31f8ce97a5ca4ab590f948b5b441d131c328a990
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 18:45:18 2010 -0400

    config: update AC_PREREQ statement to 2.60
    
    Unrelated to the previous patches, the new value simply reflects
    the reality that the minimum level for autoconf to configure
    all x.org modules is 2.60 dated June 2006.
    
    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 174def8f18f74094066884f422979d59d5ca2d39
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Jun 24 08:35:06 2010 +0800

            modified:   autogen.sh

commit 9e8d8489922d8b647b28de06045e8fddf0ffc62f
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Tue Jun 22 15:17:27 2010 +0800

            modified:   autogen.sh
            modified:   configure.ac
            modified:   src/ast.h
            modified:   src/ast_2dtool.c
            modified:   src/ast_2dtool.h
            modified:   src/ast_accel.c
            modified:   src/ast_driver.c
            modified:   src/ast_mode.c
            modified:   src/ast_mode.h
            modified:   src/ast_vgatool.c

commit 59995d0619afca6e88c1be08e01bfb60903c5099
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Dec 15 22:01:02 2009 -0500

    configure.ac: remove unused sdkdir=$(pkg-config...) statement
    
    The sdkdir variable isn't use, so remove the statement.
    
    Acked-by: Dan Nicholson <dbn.lists@gmail.com>
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 8a9c1ea2ec52dfd6d8da5ab29306f48a15f8ee28
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Nov 23 09:25:05 2009 -0500

    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
    
    Now that the INSTALL file is generated.
    Allows running make maintainer-clean.

commit 7b23ba3c4cb6b0c02bf6cd9c64cbd840f2a41afd
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:41:41 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Automake 'foreign' option is specified in configure.ac.
    Remove from Makefile.am

commit 7ad5e7b0f5bba32446e255f831facea65ba6d68a
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:09:09 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Add missing INSTALL file. Use standard GNU file on building tarball
    README may have been updated
    Remove AUTHORS file as it is empty and no content available yet.
    Remove NEWS file as it is empty and no content available yet.

commit 2fbcad38348a1e24a6b281fe1614d35479fb3f80
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Oct 26 12:54:21 2009 -0400

    Several driver modules do not have a ChangeLog target in Makefile.am #23814
    
    The git generated ChangeLog replaces the hand written one.
    Update configure.ac to xorg-macros level 1.3.
    Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros
    Update Makefile.am to add ChangeLog target if missing
    Remove ChangeLog from EXTRA_DIST or *CLEAN variables
    This is a pre-req for the INSTALL_CMD

commit 8dfdab81c3677f00a94a0582865d6759a46bf34b
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 12:58:35 2009 -0400

    .gitignore: use common defaults with custom section # 24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.

commit 02de4573e84d9f042a69e059a730cecc66086fd4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 12:34:16 2009 -0400

    .gitignore: use common defaults with custom section # 24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.

commit 60bb936d949733823ab498ac90bdd4338869d8ca
Author: Matt Turner <mattst88@gmail.com>
Date:   Sat Nov 7 00:35:06 2009 -0500

    chmod +x autogen.sh
    
    Signed-off-by: Matt Turner <mattst88@gmail.com>

commit 882da603e0179a5f21879a3d3478b52e11daf438
Author: Matt Turner <mattst88@gmail.com>
Date:   Sat Nov 7 00:27:26 2009 -0500

    Use usleep instead of xf86UDelay
    
    Signed-off-by: Matt Turner <mattst88@gmail.com>

commit 059e58784cb41ed3c007386359488394557810dd
Author: Dave Airlie <airlied@redhat.com>
Date:   Thu Jul 30 12:04:26 2009 +1000

    ast: bump for release 0.89.9

commit b5fabfc7f764c8d07c1d8a618e58ce73624d65ce
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 28 15:22:40 2009 +1000

    ast: change to using ABI version check

commit a314fd6a6c98519967e47fc89d53e040c9842dba
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 28 13:32:28 2009 +1000

    ast: update for resources/RAC API removal

commit d72f0faa2309cf411052f480e3da83af943eb7ac
Author: Dave Airlie <airlied@redhat.com>
Date:   Tue Jul 28 10:16:30 2009 +1000

    ast: remove unneeded includes for RAC/resource

commit 2eb00170bfb9defe99a10dbfd4039952670fd099
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Jun 4 14:24:31 2009 +0800

    xf86-video-ast-v.0.89.8

commit e7e38d2ba0fcd6c1debbfd1062663a18f25f6266
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu May 28 14:47:16 2009 -0400

    Remove useless loader symbol lists.

commit ca0863e91cf7bdbd2f9c30aa1af5c9471dfc858e
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Mon Apr 13 21:01:51 2009 +0800

    xf86-video-ast-0.89.0

commit da1387d472ce893f0c3466e59c9808db8e1025f0
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 30 20:37:20 2009 -0800

    Add README with pointers to mailing list, bugzilla & git repos

commit c61961e23d379b76921ce797fdfec377d2c1abea
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Jan 16 15:00:56 2009 +0800

    Fixed the support mode issue on Solaris 10 x86

commit 619ec11075571f80de2c4556e324e4c04555ec90
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Jan 8 17:08:06 2009 +0800

    Support AST2200/2150

commit 1ca09bad07528d32db406998e8b6176989f29216
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Thu Jan 8 17:03:19 2009 +0800

    Support AST2200/2150

commit 241d411e770c36b725cc72c1cd5e52932a8cf460
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Fri Aug 22 12:01:18 2008 +0800

    Support AST1100/2050/2100

commit 35f09b08456177f837df9b965cec1019ea8f6238
Author: Adam Jackson <ajax@redhat.com>
Date:   Fri Aug 15 13:59:33 2008 -0400

    Remove dead code.

commit 3aea1540c129c230d84ed8e55586dbfb3d179d33
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Mon Jul 21 10:48:09 2008 +0800

    Fixed the incorrect settings of Graphics registers

commit e81e70ea3833f25dc5ec1def6257958e7c8ad0e8
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Mar 19 13:27:01 2008 -0400

    ast 0.85.0

commit 14d4fe8279369a2e6c55e3a139332e4c3945d95d
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Mar 19 13:21:59 2008 -0400

    Fix distcheck.

commit ad5b2148509600a7649127c5dc1a6442d86f7eb8
Author: Y.C. Chen <yc_chen@aspeedtech.com>
Date:   Tue Mar 18 19:00:38 2008 +0800

    compiler warning fixed

commit 33cc790b35f2ad19ea68867d6a089f7b827f8334
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Sun Mar 16 02:16:43 2008 -0300

    Compile warning fixes.
    
      Declare ulGetCMDQLength as static, and don't declare a variable if
    XSERVER_LIBPCIACCESS is defined.
    
      There is a lot of prototypes defined in some c files, that would be
    better to be moved to the appropriate header, to make sure definition
    matches prototype, but not done for now.
    
    Signed-off-by: Y.C. Chen <yc_chen@aspeedtech.com>

commit 88944bd72555056c10dfcf87eb1a98c9ecf704bc
Author: Dave Airlie <airlied@redhat.com>
Date:   Mon Mar 10 11:53:07 2008 +1000

    ast: pciaccess conversion

commit cbf726c635280ea79524e94d6e993ed29c647bd2
Author: root <root@localhost.localdomain>
Date:   Sat Mar 1 10:13:03 2008 +0800

    Make sure used symbols are of public visibility

commit d5b5a0e603e47dd3782c41685e75c6bd2d9e1016
Merge: 2d1b721 486380c
Author: James Cloos <cloos@jhcloos.com>
Date:   Mon Sep 3 06:06:32 2007 -0400

    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/driver/xf86-video-ast

commit 2d1b72187d14d7cc5a1b9ded7cd60b3fcbaebaae
Author: James Cloos <cloos@jhcloos.com>
Date:   Mon Sep 3 05:52:28 2007 -0400

    Add *~ to .gitignore to skip patch/emacs droppings

commit 486380cd85cdd2532300905ee588be48480ce1dc
Author: root <root@localhost.localdomain>
Date:   Fri Aug 24 21:13:39 2007 +0800

            modified:   ChangeLog
            modified:   configure.ac
            modified:   src/ast.h
            modified:   src/ast_2dtool.h
            modified:   src/ast_accel.c
            modified:   src/ast_cursor.c
            modified:   src/ast_driver.c
            modified:   src/ast_mode.c
            modified:   src/ast_mode.h
            modified:   src/ast_vgatool.c

commit 8bbdddf6025e1421e91ce12c509840822b395fb6
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Aug 23 19:25:44 2007 -0400

    Rename .cvsignore to .gitignore

commit 40771362cd94a0e89181b47bcfca7e06ec4127ad
Author: Brice Goglin <bgoglin@debian.org>
Date:   Tue Aug 7 10:20:51 2007 +0200

    Define AST_*_VERSION* using PACKAGE_VERSION_*

commit b3367f4162a7ea295fec2dd424a83861c340cdb8
Author: yc_chen <yc_chen>
Date:   Mon Apr 17 03:27:40 2006 +0000

    Fixed can't get correct MCLK in some platforms

commit 3bc1deb6a84d5ad1ff47b2efe89ed15d68e5822a
Author: Adam Jackson <ajax@nwnk.net>
Date:   Fri Apr 7 22:25:23 2006 +0000

    Unlibcwrap. Bump server version requirement. Bump to 0.81.0.

commit efba7f83ef225df8a0eaee660cb9bba19fd775c0
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Wed Mar 15 21:05:45 2006 +0000

    Update from ASPEED Technology Inc. to fix incorrect line drawing issue and
        change driver name from "AST1000/2000" to "AST" to fix Xorg log
        formatting issues with long driver names. Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment #4948
        <https://bugs.freedesktop.org/attachment.cgi?id=4948>

commit 245466d4ef8ea4012242a3fa21a217e767f4eac4
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Wed Mar 15 00:43:18 2006 +0000

    Add the normal trappings of the Xorg modular build system.
    Replace "Xv.h" with <X11/extensions/Xv.h> and add #include "config.h" for
        modular build Strip ^M out of ast_accel.c

commit 24d5661d2c703582e44ce140d0eb7251433e1ad0
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Mar 14 23:51:52 2006 +0000

    Version 0.80 from ASPEED Technology Inc. (Fixed get video buffer size
        incorrect issue) Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment #4932
        <https://bugs.freedesktop.org/attachment.cgi?id=4932>

commit 4e31187407a6dfe53a9d15f06c8c4584e20125ba
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Mar 14 23:36:18 2006 +0000

    Version 0.62 from ASPEED Technology Inc. (Fixed get video buffer size
        incorrect issue) Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment #4563
        <https://bugs.freedesktop.org/attachment.cgi?id=4563>

commit 7c713fb0da9c5c0c5c4e727ff4c801ec0e6e4a83
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Mar 14 23:28:47 2006 +0000

    Version 0.61 from ASPEED Technology Inc. (Update for Xorg 6.9.0 - Can't
        reference XAACOPYROP) Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment #4044
        <https://bugs.freedesktop.org/attachment.cgi?id=4245>

commit 784ff02611fdf4adeced1bd156fbb7e6ed63df22
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Mar 14 23:23:36 2006 +0000

    Version 0.60 from ASPEED Technology Inc. (Modify H/W cursor parts for
        customer request) Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment #4044
        <https://bugs.freedesktop.org/attachment.cgi?id=4044>

commit 7ce3a2ba6d211aeaa19a6841935bc50205788d62
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Tue Mar 14 23:18:18 2006 +0000

    Initial code release from ASPEED Technology Inc. Bugzilla #4937
        <https://bugs.freedesktop.org/show_bug.cgi?id=4937> Attachment 3686
        <https://bugs.freedesktop.org/attachment.cgi?id=3686>
