Prueba este codigo:
Código PHP:
try{
$coneccion = new PDO("mysql:host=localhost;dbname=pdo","root","root ");
$stmt = $coneccion->prepare("CALL devolver(?)");
$valor = 0;
$stmt->bindParam(1,$valor,PDO::PARAM_INT,11);
$stmt->execute();
print $valor;
}catch (Exception $exception) {
echo $exception->getMessage();
}
Saludos.