Update SEND_CONFIGURATION message to use displayId param

Probably this piece was lost somewhere in merges.
The param was added in ag/1551198

Test: Existing and manual tests still pass.
Change-Id: I2dbc533361b9a821a952511e469a99df230d45cf
(cherry picked from commit b17e86940ef86000f07b58b878f82533cfafd015)
diff --git a/services/core/java/com/android/server/wm/DisplayContent.java b/services/core/java/com/android/server/wm/DisplayContent.java
index 793d2fe..8db8118 100644
--- a/services/core/java/com/android/server/wm/DisplayContent.java
+++ b/services/core/java/com/android/server/wm/DisplayContent.java
@@ -2650,7 +2650,7 @@
                 if (DEBUG_LAYOUT) Slog.v(TAG, "Computing new config from layout");
                 if (mService.updateOrientationFromAppTokensLocked(true, mDisplayId)) {
                     setLayoutNeeded();
-                    mService.mH.sendEmptyMessage(SEND_NEW_CONFIGURATION);
+                    mService.mH.obtainMessage(SEND_NEW_CONFIGURATION, mDisplayId).sendToTarget();
                 }
             }