Twenty Eleven Child theme error when attempting to use a rewritten function

Why exactly are you trying to redeclare that function?

You can either edit the original function, or, better yet, use remove_action to remove add_action( 'widgets_init', 'twentyeleven_widgets_init' ); and then reattach your own function add_action('widgets_init', 'your_widgets_init_function' );