How to solve W0561322:Section alignment mismatch : "<section name>"?

Hi guys,

Does anyone have experience to solve the warning W0561322?
I put the same alignment wherever declaring the section and align the start address of section in -start as 4 but the issue is not resolved.

    .section ".text", text
    .align   4

Do any other sections present at the same file cause this warning? 
E.g.: 
;-----------------------------------------------------------------------------
;   zeroclr4
;-----------------------------------------------------------------------------
    .section ".text", text
    .align    4
_zeroclr4:
    br      .L.zeroclr4.2
.L.zeroclr4.1:
    st.w    r0, [r6]
    add     4, r6
.L.zeroclr4.2:
    cmp     r6, r7
    bh      .L.zeroclr4.1
    jmp [lp]

;-------------------------------------------------------------------------------
;-------------  Add section ".RESET_PE0" to your linker command file
;-------------  at address 0x0000
;-------------------------------------------------------------------------------
  .section  "RESET_PE0", text
  .align  4
;-------------------------------------------------------------------------------
;-------------  Initializing of interrupt vector table
;-------------  Please don't modify this section
;-------------------------------------------------------------------------------
  .extern _RESET_VECTOR
  .offset 0x0000
_RESET_VECTOR:
$ifdef RESET_ENABLE
  .extern _RESET
  jr _RESET
$else
  jr __unused_isr
$endif

----------------------------
Thank you!