Thanks. I needed to wrap the meta_query in another array to get this working. Here’s the code.
$args = array(
'post_type' => 'listings',
'meta_key' => 'usp_startdate',
'orderby' => 'meta_value',
'order'=>'DESC',
'meta_query' => array(
array(
'key' => 'usp_startdate',
'value' => array( '2012-01-01', '2012-12-31'),
'compare' => 'BETWEEN'
)
)
);
$query = new WP_Query($args);