Skip to content
  • David Gibson's avatar
    dtc: Enable and fix -Wcast-qual warnings · c6683026
    David Gibson authored
    
    
    Enabling -Wcast-qual warnings in dtc shows up a number of places where
    we are incorrectly discarding a const qualification.  There are also
    some places where we are intentionally discarding the 'const', and we
    need an ugly cast through uintptr_t to suppress the warning.  However,
    most of these are pretty well isolated with the *_w() functions.  So
    in the interests of maximum safety with const qualifications, this
    patch enables the warnings and fixes the existing complaints.
    
    Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
    Acked-by: default avatarGerald Van Baren <vanbaren@cideas.com>
    c6683026