Fix style issues and enable style checks

The enabled checks `3abdefhiklnprSx` are what we already live by
but didn't enforce so far. One check that we use internally, yet
omit here is `t`, token spacing. It's too aggressive and doesn't
allow for manual alignment of tables. The set of checks seems to
to fit our code base rather well, otherwise.

So following checks will be performed:

`3` Specify indentation level: 3 spaces.
`a` Check attribute casing: Attributes should appear in mixed case
`b` Blanks not allowed at statement end
`d` Check no DOS line terminators present: No CR/LF
`e` Check end/exit labels
`f` No form feeds or vertical tabs
`h` No horizontal tabs: We always use spaces
`i` Check if-then layout
`k` Check keyword casing: Keywords should appear in lower case
`l` Check layout: Follow layout recommendation of the Ada RM
`n` Check casing of entities in Standard: Should follow the Ada RM
`p` Check pragma casing: Should appear in mixed case
`r` Check reference: Identifiers should appear as in the declaration
`S` Check no statements after then/else
`x` Check extra parentheses: No C-syle parents arounds conditions

Change-Id: Ia07c571c3e3e4e49d8559099511b217ade86f33f
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.sourcearcade.org/c/libgfxinit/+/533
Reviewed-by: Thomas Heijligen <src@posteo.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: Nico Huber <nico.h@gmx.de>
diff --git a/common/g45/hw-gfx-gma-plls.adb b/common/g45/hw-gfx-gma-plls.adb
index fcc08ad..2b93444 100644
--- a/common/g45/hw-gfx-gma-plls.adb
+++ b/common/g45/hw-gfx-gma-plls.adb
@@ -118,7 +118,7 @@
       P2_Fast      =>   7,           P2_Slow   =>   7,
       P2_Threshold => Clock_Range'First,
       VCO_Lower    => 1_750_000_000, VCO_Upper => 3_500_000_000);
-    SDVO_Limits : constant Limits_Type := Limits_Type'
+   SDVO_Limits : constant Limits_Type := Limits_Type'
      (N_Lower      =>   3,           N_Upper   =>   6,
       M_Lower      =>  104,          M_Upper   => 138,
       M1_Lower     =>  16,           M1_Upper  =>  25,
@@ -129,7 +129,7 @@
       P2_Fast      =>   5,          P2_Slow   =>  10,
       P2_Threshold =>   270_000_000,
       VCO_Lower    => 1_750_000_000, VCO_Upper => 3_500_000_000);
-    HDMI_Analog_Limits : constant Limits_Type := Limits_Type'
+   HDMI_Analog_Limits : constant Limits_Type := Limits_Type'
      (N_Lower      =>   3,           N_Upper   =>   6,
       M_Lower      =>  104,          M_Upper   => 138,
       M1_Lower     =>  18,           M1_Upper  =>  25,
@@ -203,7 +203,7 @@
       DP       => MODE_DPLL_DP,
       HDMI     => MODE_DPLL_HDMI,
       VGA      => MODE_DPLL_DAC,
-      Others   => MODE_DPLL_HDMI); --TODO Add SDVO
+      others   => MODE_DPLL_HDMI); --TODO Add SDVO
 
    FP0 : constant Regs := Regs'(Registers.GMCH_FPA0, Registers.GMCH_FPB0);
    FP1 : constant Regs := Regs'(Registers.GMCH_FPA1, Registers.GMCH_FPB1);