Move Comment Form above Comment List in Genesis

<?php
/**
* move comment form above comment list
*/
add_action( 'genesis_before_comments', 'wd_comment_checker' );
function wd_comment_checker() {
     if ( have_comments() ) { // only do this if the post has comments or it will remove the comment form
          remove_action( 'genesis_comment_form', 'genesis_do_comment_form' );
          add_action( 'genesis_list_comments', 'genesis_do_comment_form' , 5 );
     }
}