]> git.hungrycats.org Git - linux/commitdiff
[PATCH] Remove address member from scatterlist docs.
authorDave Jones <davej@suse.de>
Wed, 3 Apr 2002 03:59:23 +0000 (19:59 -0800)
committerDave Jones <davej@suse.de>
Wed, 3 Apr 2002 03:59:23 +0000 (19:59 -0800)
The element is dead, so update the docs to reflect reality.

Documentation/DMA-mapping.txt

index 1690b0ed0138059adc6e546868f0f7b73c59ab09..d51adf424b48272d7d0dca1c5814d9803b48ac3a 100644 (file)
@@ -759,13 +759,10 @@ to "Closing".
    Struct scatterlist must contain, at a minimum, the following
    members:
 
-       char *address;
        struct page *page;
        unsigned int offset;
        unsigned int length;
 
-   The "address" member will disappear in 2.5.x
-
    This means that your pci_{map,unmap}_sg() and all other
    interfaces dealing with scatterlists must be able to cope
    properly with page being non NULL.
@@ -775,9 +772,6 @@ to "Closing".
    If "address" is NULL, then "page+offset" is being used.
    If "page" is NULL, then "address" is being used.
 
-   In 2.5.x, all scatterlists will use "page+offset".  But during
-   2.4.x we still have to support the old method.
-
 2) More to come...
 
                           Closing